/
mysql-backup
/
Upload File
HOME
-- MySQL dump 10.13 Distrib 5.7.42, for Linux (x86_64) -- -- Host: localhost Database: sfwordpressdemo -- ------------------------------------------------------ -- Server version 5.7.42-0ubuntu0.18.04.1 /*!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 `py_commentmeta` -- DROP TABLE IF EXISTS `py_commentmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `py_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_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `py_commentmeta` -- LOCK TABLES `py_commentmeta` WRITE; /*!40000 ALTER TABLE `py_commentmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `py_commentmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `py_comments` -- DROP TABLE IF EXISTS `py_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `py_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_520_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_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_520_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_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_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `py_comments` -- LOCK TABLES `py_comments` WRITE; /*!40000 ALTER TABLE `py_comments` DISABLE KEYS */; INSERT INTO `py_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2023-10-23 07:10:59','2023-10-23 07:10:59','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 `py_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `py_links` -- DROP TABLE IF EXISTS `py_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `py_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_520_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_520_ci NOT NULL DEFAULT '', `link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `py_links` -- LOCK TABLES `py_links` WRITE; /*!40000 ALTER TABLE `py_links` DISABLE KEYS */; /*!40000 ALTER TABLE `py_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `py_options` -- DROP TABLE IF EXISTS `py_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `py_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`), KEY `autoload` (`autoload`) ) ENGINE=InnoDB AUTO_INCREMENT=178 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `py_options` -- LOCK TABLES `py_options` WRITE; /*!40000 ALTER TABLE `py_options` DISABLE KEYS */; INSERT INTO `py_options` VALUES (1,'siteurl','https://wordpressdemo.subscriptionflow.com/payment-widget','yes'),(2,'home','https://wordpressdemo.subscriptionflow.com/payment-widget','yes'),(3,'blogname','PaymentWidget Demo','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','info@subscriptionflow.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','0','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','/index.php/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:79:{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: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:42:\"index.php/feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:37:\"index.php/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:18:\"index.php/embed/?$\";s:21:\"index.php?&embed=true\";s:30:\"index.php/page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:51:\"index.php/comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:46:\"index.php/comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:27:\"index.php/comments/embed/?$\";s:21:\"index.php?&embed=true\";s:54:\"index.php/search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:49:\"index.php/search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:30:\"index.php/search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:42:\"index.php/search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:24:\"index.php/search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:57:\"index.php/author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:52:\"index.php/author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:33:\"index.php/author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:45:\"index.php/author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:27:\"index.php/author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:79:\"index.php/([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:74:\"index.php/([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:55:\"index.php/([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:67:\"index.php/([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:49:\"index.php/([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:66:\"index.php/([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:61:\"index.php/([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:42:\"index.php/([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:54:\"index.php/([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:36:\"index.php/([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:53:\"index.php/([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:48:\"index.php/([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:29:\"index.php/([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:41:\"index.php/([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:23:\"index.php/([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:68:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:78:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:98:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:93:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:93:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:74:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:63:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:67:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:87:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:82:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:75:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:82:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:71:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:57:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:67:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:87:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:82:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:82:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:63:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:74:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:61:\"index.php/([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:48:\"index.php/([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:37:\"index.php/.?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"index.php/.?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"index.php/.?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"index.php/.?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"index.php/.?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"index.php/.?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"index.php/(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:30:\"index.php/(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:50:\"index.php/(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:45:\"index.php/(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:38:\"index.php/(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:45:\"index.php/(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:34:\"index.php/(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:1:{i:0;s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','twentytwentythree','yes'),(41,'stylesheet','twentytwentythree','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','0','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','posts','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:0:{}','yes'),(77,'widget_text','a:0:{}','yes'),(78,'widget_rss','a:0:{}','yes'),(79,'uninstall_plugins','a:0:{}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','0','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','0','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','1713597059','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','55853','yes'),(100,'py_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{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: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','1','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:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}s:13:\"array_version\";i:3;}','yes'),(105,'cron','a:10:{i:1701353460;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:1701371460;a:4:{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:1701371466;a:1:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1701414660;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1701414666;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1701414667;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:1701416580;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:1701675665;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:1701760260;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','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_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(120,'_transient_wp_core_block_css_files','a:2:{s:7:\"version\";s:5:\"6.3.2\";s:5:\"files\";a:496:{i:0;s:23:\"archives/editor-rtl.css\";i:1;s:27:\"archives/editor-rtl.min.css\";i:2;s:19:\"archives/editor.css\";i:3;s:23:\"archives/editor.min.css\";i:4;s:22:\"archives/style-rtl.css\";i:5;s:26:\"archives/style-rtl.min.css\";i:6;s:18:\"archives/style.css\";i:7;s:22:\"archives/style.min.css\";i:8;s:20:\"audio/editor-rtl.css\";i:9;s:24:\"audio/editor-rtl.min.css\";i:10;s:16:\"audio/editor.css\";i:11;s:20:\"audio/editor.min.css\";i:12;s:19:\"audio/style-rtl.css\";i:13;s:23:\"audio/style-rtl.min.css\";i:14;s:15:\"audio/style.css\";i:15;s:19:\"audio/style.min.css\";i:16;s:19:\"audio/theme-rtl.css\";i:17;s:23:\"audio/theme-rtl.min.css\";i:18;s:15:\"audio/theme.css\";i:19;s:19:\"audio/theme.min.css\";i:20;s:21:\"avatar/editor-rtl.css\";i:21;s:25:\"avatar/editor-rtl.min.css\";i:22;s:17:\"avatar/editor.css\";i:23;s:21:\"avatar/editor.min.css\";i:24;s:20:\"avatar/style-rtl.css\";i:25;s:24:\"avatar/style-rtl.min.css\";i:26;s:16:\"avatar/style.css\";i:27;s:20:\"avatar/style.min.css\";i:28;s:20:\"block/editor-rtl.css\";i:29;s:24:\"block/editor-rtl.min.css\";i:30;s:16:\"block/editor.css\";i:31;s:20:\"block/editor.min.css\";i:32;s:21:\"button/editor-rtl.css\";i:33;s:25:\"button/editor-rtl.min.css\";i:34;s:17:\"button/editor.css\";i:35;s:21:\"button/editor.min.css\";i:36;s:20:\"button/style-rtl.css\";i:37;s:24:\"button/style-rtl.min.css\";i:38;s:16:\"button/style.css\";i:39;s:20:\"button/style.min.css\";i:40;s:22:\"buttons/editor-rtl.css\";i:41;s:26:\"buttons/editor-rtl.min.css\";i:42;s:18:\"buttons/editor.css\";i:43;s:22:\"buttons/editor.min.css\";i:44;s:21:\"buttons/style-rtl.css\";i:45;s:25:\"buttons/style-rtl.min.css\";i:46;s:17:\"buttons/style.css\";i:47;s:21:\"buttons/style.min.css\";i:48;s:22:\"calendar/style-rtl.css\";i:49;s:26:\"calendar/style-rtl.min.css\";i:50;s:18:\"calendar/style.css\";i:51;s:22:\"calendar/style.min.css\";i:52;s:25:\"categories/editor-rtl.css\";i:53;s:29:\"categories/editor-rtl.min.css\";i:54;s:21:\"categories/editor.css\";i:55;s:25:\"categories/editor.min.css\";i:56;s:24:\"categories/style-rtl.css\";i:57;s:28:\"categories/style-rtl.min.css\";i:58;s:20:\"categories/style.css\";i:59;s:24:\"categories/style.min.css\";i:60;s:19:\"code/editor-rtl.css\";i:61;s:23:\"code/editor-rtl.min.css\";i:62;s:15:\"code/editor.css\";i:63;s:19:\"code/editor.min.css\";i:64;s:18:\"code/style-rtl.css\";i:65;s:22:\"code/style-rtl.min.css\";i:66;s:14:\"code/style.css\";i:67;s:18:\"code/style.min.css\";i:68;s:18:\"code/theme-rtl.css\";i:69;s:22:\"code/theme-rtl.min.css\";i:70;s:14:\"code/theme.css\";i:71;s:18:\"code/theme.min.css\";i:72;s:22:\"columns/editor-rtl.css\";i:73;s:26:\"columns/editor-rtl.min.css\";i:74;s:18:\"columns/editor.css\";i:75;s:22:\"columns/editor.min.css\";i:76;s:21:\"columns/style-rtl.css\";i:77;s:25:\"columns/style-rtl.min.css\";i:78;s:17:\"columns/style.css\";i:79;s:21:\"columns/style.min.css\";i:80;s:29:\"comment-content/style-rtl.css\";i:81;s:33:\"comment-content/style-rtl.min.css\";i:82;s:25:\"comment-content/style.css\";i:83;s:29:\"comment-content/style.min.css\";i:84;s:30:\"comment-template/style-rtl.css\";i:85;s:34:\"comment-template/style-rtl.min.css\";i:86;s:26:\"comment-template/style.css\";i:87;s:30:\"comment-template/style.min.css\";i:88;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:89;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:90;s:38:\"comments-pagination-numbers/editor.css\";i:91;s:42:\"comments-pagination-numbers/editor.min.css\";i:92;s:34:\"comments-pagination/editor-rtl.css\";i:93;s:38:\"comments-pagination/editor-rtl.min.css\";i:94;s:30:\"comments-pagination/editor.css\";i:95;s:34:\"comments-pagination/editor.min.css\";i:96;s:33:\"comments-pagination/style-rtl.css\";i:97;s:37:\"comments-pagination/style-rtl.min.css\";i:98;s:29:\"comments-pagination/style.css\";i:99;s:33:\"comments-pagination/style.min.css\";i:100;s:29:\"comments-title/editor-rtl.css\";i:101;s:33:\"comments-title/editor-rtl.min.css\";i:102;s:25:\"comments-title/editor.css\";i:103;s:29:\"comments-title/editor.min.css\";i:104;s:23:\"comments/editor-rtl.css\";i:105;s:27:\"comments/editor-rtl.min.css\";i:106;s:19:\"comments/editor.css\";i:107;s:23:\"comments/editor.min.css\";i:108;s:22:\"comments/style-rtl.css\";i:109;s:26:\"comments/style-rtl.min.css\";i:110;s:18:\"comments/style.css\";i:111;s:22:\"comments/style.min.css\";i:112;s:20:\"cover/editor-rtl.css\";i:113;s:24:\"cover/editor-rtl.min.css\";i:114;s:16:\"cover/editor.css\";i:115;s:20:\"cover/editor.min.css\";i:116;s:19:\"cover/style-rtl.css\";i:117;s:23:\"cover/style-rtl.min.css\";i:118;s:15:\"cover/style.css\";i:119;s:19:\"cover/style.min.css\";i:120;s:22:\"details/editor-rtl.css\";i:121;s:26:\"details/editor-rtl.min.css\";i:122;s:18:\"details/editor.css\";i:123;s:22:\"details/editor.min.css\";i:124;s:21:\"details/style-rtl.css\";i:125;s:25:\"details/style-rtl.min.css\";i:126;s:17:\"details/style.css\";i:127;s:21:\"details/style.min.css\";i:128;s:20:\"embed/editor-rtl.css\";i:129;s:24:\"embed/editor-rtl.min.css\";i:130;s:16:\"embed/editor.css\";i:131;s:20:\"embed/editor.min.css\";i:132;s:19:\"embed/style-rtl.css\";i:133;s:23:\"embed/style-rtl.min.css\";i:134;s:15:\"embed/style.css\";i:135;s:19:\"embed/style.min.css\";i:136;s:19:\"embed/theme-rtl.css\";i:137;s:23:\"embed/theme-rtl.min.css\";i:138;s:15:\"embed/theme.css\";i:139;s:19:\"embed/theme.min.css\";i:140;s:19:\"file/editor-rtl.css\";i:141;s:23:\"file/editor-rtl.min.css\";i:142;s:15:\"file/editor.css\";i:143;s:19:\"file/editor.min.css\";i:144;s:18:\"file/style-rtl.css\";i:145;s:22:\"file/style-rtl.min.css\";i:146;s:14:\"file/style.css\";i:147;s:18:\"file/style.min.css\";i:148;s:23:\"footnotes/style-rtl.css\";i:149;s:27:\"footnotes/style-rtl.min.css\";i:150;s:19:\"footnotes/style.css\";i:151;s:23:\"footnotes/style.min.css\";i:152;s:23:\"freeform/editor-rtl.css\";i:153;s:27:\"freeform/editor-rtl.min.css\";i:154;s:19:\"freeform/editor.css\";i:155;s:23:\"freeform/editor.min.css\";i:156;s:22:\"gallery/editor-rtl.css\";i:157;s:26:\"gallery/editor-rtl.min.css\";i:158;s:18:\"gallery/editor.css\";i:159;s:22:\"gallery/editor.min.css\";i:160;s:21:\"gallery/style-rtl.css\";i:161;s:25:\"gallery/style-rtl.min.css\";i:162;s:17:\"gallery/style.css\";i:163;s:21:\"gallery/style.min.css\";i:164;s:21:\"gallery/theme-rtl.css\";i:165;s:25:\"gallery/theme-rtl.min.css\";i:166;s:17:\"gallery/theme.css\";i:167;s:21:\"gallery/theme.min.css\";i:168;s:20:\"group/editor-rtl.css\";i:169;s:24:\"group/editor-rtl.min.css\";i:170;s:16:\"group/editor.css\";i:171;s:20:\"group/editor.min.css\";i:172;s:19:\"group/style-rtl.css\";i:173;s:23:\"group/style-rtl.min.css\";i:174;s:15:\"group/style.css\";i:175;s:19:\"group/style.min.css\";i:176;s:19:\"group/theme-rtl.css\";i:177;s:23:\"group/theme-rtl.min.css\";i:178;s:15:\"group/theme.css\";i:179;s:19:\"group/theme.min.css\";i:180;s:21:\"heading/style-rtl.css\";i:181;s:25:\"heading/style-rtl.min.css\";i:182;s:17:\"heading/style.css\";i:183;s:21:\"heading/style.min.css\";i:184;s:19:\"html/editor-rtl.css\";i:185;s:23:\"html/editor-rtl.min.css\";i:186;s:15:\"html/editor.css\";i:187;s:19:\"html/editor.min.css\";i:188;s:20:\"image/editor-rtl.css\";i:189;s:24:\"image/editor-rtl.min.css\";i:190;s:16:\"image/editor.css\";i:191;s:20:\"image/editor.min.css\";i:192;s:19:\"image/style-rtl.css\";i:193;s:23:\"image/style-rtl.min.css\";i:194;s:15:\"image/style.css\";i:195;s:19:\"image/style.min.css\";i:196;s:19:\"image/theme-rtl.css\";i:197;s:23:\"image/theme-rtl.min.css\";i:198;s:15:\"image/theme.css\";i:199;s:19:\"image/theme.min.css\";i:200;s:29:\"latest-comments/style-rtl.css\";i:201;s:33:\"latest-comments/style-rtl.min.css\";i:202;s:25:\"latest-comments/style.css\";i:203;s:29:\"latest-comments/style.min.css\";i:204;s:27:\"latest-posts/editor-rtl.css\";i:205;s:31:\"latest-posts/editor-rtl.min.css\";i:206;s:23:\"latest-posts/editor.css\";i:207;s:27:\"latest-posts/editor.min.css\";i:208;s:26:\"latest-posts/style-rtl.css\";i:209;s:30:\"latest-posts/style-rtl.min.css\";i:210;s:22:\"latest-posts/style.css\";i:211;s:26:\"latest-posts/style.min.css\";i:212;s:18:\"list/style-rtl.css\";i:213;s:22:\"list/style-rtl.min.css\";i:214;s:14:\"list/style.css\";i:215;s:18:\"list/style.min.css\";i:216;s:25:\"media-text/editor-rtl.css\";i:217;s:29:\"media-text/editor-rtl.min.css\";i:218;s:21:\"media-text/editor.css\";i:219;s:25:\"media-text/editor.min.css\";i:220;s:24:\"media-text/style-rtl.css\";i:221;s:28:\"media-text/style-rtl.min.css\";i:222;s:20:\"media-text/style.css\";i:223;s:24:\"media-text/style.min.css\";i:224;s:19:\"more/editor-rtl.css\";i:225;s:23:\"more/editor-rtl.min.css\";i:226;s:15:\"more/editor.css\";i:227;s:19:\"more/editor.min.css\";i:228;s:30:\"navigation-link/editor-rtl.css\";i:229;s:34:\"navigation-link/editor-rtl.min.css\";i:230;s:26:\"navigation-link/editor.css\";i:231;s:30:\"navigation-link/editor.min.css\";i:232;s:29:\"navigation-link/style-rtl.css\";i:233;s:33:\"navigation-link/style-rtl.min.css\";i:234;s:25:\"navigation-link/style.css\";i:235;s:29:\"navigation-link/style.min.css\";i:236;s:33:\"navigation-submenu/editor-rtl.css\";i:237;s:37:\"navigation-submenu/editor-rtl.min.css\";i:238;s:29:\"navigation-submenu/editor.css\";i:239;s:33:\"navigation-submenu/editor.min.css\";i:240;s:25:\"navigation/editor-rtl.css\";i:241;s:29:\"navigation/editor-rtl.min.css\";i:242;s:21:\"navigation/editor.css\";i:243;s:25:\"navigation/editor.min.css\";i:244;s:24:\"navigation/style-rtl.css\";i:245;s:28:\"navigation/style-rtl.min.css\";i:246;s:20:\"navigation/style.css\";i:247;s:24:\"navigation/style.min.css\";i:248;s:23:\"nextpage/editor-rtl.css\";i:249;s:27:\"nextpage/editor-rtl.min.css\";i:250;s:19:\"nextpage/editor.css\";i:251;s:23:\"nextpage/editor.min.css\";i:252;s:24:\"page-list/editor-rtl.css\";i:253;s:28:\"page-list/editor-rtl.min.css\";i:254;s:20:\"page-list/editor.css\";i:255;s:24:\"page-list/editor.min.css\";i:256;s:23:\"page-list/style-rtl.css\";i:257;s:27:\"page-list/style-rtl.min.css\";i:258;s:19:\"page-list/style.css\";i:259;s:23:\"page-list/style.min.css\";i:260;s:24:\"paragraph/editor-rtl.css\";i:261;s:28:\"paragraph/editor-rtl.min.css\";i:262;s:20:\"paragraph/editor.css\";i:263;s:24:\"paragraph/editor.min.css\";i:264;s:23:\"paragraph/style-rtl.css\";i:265;s:27:\"paragraph/style-rtl.min.css\";i:266;s:19:\"paragraph/style.css\";i:267;s:23:\"paragraph/style.min.css\";i:268;s:25:\"post-author/style-rtl.css\";i:269;s:29:\"post-author/style-rtl.min.css\";i:270;s:21:\"post-author/style.css\";i:271;s:25:\"post-author/style.min.css\";i:272;s:33:\"post-comments-form/editor-rtl.css\";i:273;s:37:\"post-comments-form/editor-rtl.min.css\";i:274;s:29:\"post-comments-form/editor.css\";i:275;s:33:\"post-comments-form/editor.min.css\";i:276;s:32:\"post-comments-form/style-rtl.css\";i:277;s:36:\"post-comments-form/style-rtl.min.css\";i:278;s:28:\"post-comments-form/style.css\";i:279;s:32:\"post-comments-form/style.min.css\";i:280;s:23:\"post-date/style-rtl.css\";i:281;s:27:\"post-date/style-rtl.min.css\";i:282;s:19:\"post-date/style.css\";i:283;s:23:\"post-date/style.min.css\";i:284;s:27:\"post-excerpt/editor-rtl.css\";i:285;s:31:\"post-excerpt/editor-rtl.min.css\";i:286;s:23:\"post-excerpt/editor.css\";i:287;s:27:\"post-excerpt/editor.min.css\";i:288;s:26:\"post-excerpt/style-rtl.css\";i:289;s:30:\"post-excerpt/style-rtl.min.css\";i:290;s:22:\"post-excerpt/style.css\";i:291;s:26:\"post-excerpt/style.min.css\";i:292;s:34:\"post-featured-image/editor-rtl.css\";i:293;s:38:\"post-featured-image/editor-rtl.min.css\";i:294;s:30:\"post-featured-image/editor.css\";i:295;s:34:\"post-featured-image/editor.min.css\";i:296;s:33:\"post-featured-image/style-rtl.css\";i:297;s:37:\"post-featured-image/style-rtl.min.css\";i:298;s:29:\"post-featured-image/style.css\";i:299;s:33:\"post-featured-image/style.min.css\";i:300;s:34:\"post-navigation-link/style-rtl.css\";i:301;s:38:\"post-navigation-link/style-rtl.min.css\";i:302;s:30:\"post-navigation-link/style.css\";i:303;s:34:\"post-navigation-link/style.min.css\";i:304;s:28:\"post-template/editor-rtl.css\";i:305;s:32:\"post-template/editor-rtl.min.css\";i:306;s:24:\"post-template/editor.css\";i:307;s:28:\"post-template/editor.min.css\";i:308;s:27:\"post-template/style-rtl.css\";i:309;s:31:\"post-template/style-rtl.min.css\";i:310;s:23:\"post-template/style.css\";i:311;s:27:\"post-template/style.min.css\";i:312;s:24:\"post-terms/style-rtl.css\";i:313;s:28:\"post-terms/style-rtl.min.css\";i:314;s:20:\"post-terms/style.css\";i:315;s:24:\"post-terms/style.min.css\";i:316;s:24:\"post-title/style-rtl.css\";i:317;s:28:\"post-title/style-rtl.min.css\";i:318;s:20:\"post-title/style.css\";i:319;s:24:\"post-title/style.min.css\";i:320;s:26:\"preformatted/style-rtl.css\";i:321;s:30:\"preformatted/style-rtl.min.css\";i:322;s:22:\"preformatted/style.css\";i:323;s:26:\"preformatted/style.min.css\";i:324;s:24:\"pullquote/editor-rtl.css\";i:325;s:28:\"pullquote/editor-rtl.min.css\";i:326;s:20:\"pullquote/editor.css\";i:327;s:24:\"pullquote/editor.min.css\";i:328;s:23:\"pullquote/style-rtl.css\";i:329;s:27:\"pullquote/style-rtl.min.css\";i:330;s:19:\"pullquote/style.css\";i:331;s:23:\"pullquote/style.min.css\";i:332;s:23:\"pullquote/theme-rtl.css\";i:333;s:27:\"pullquote/theme-rtl.min.css\";i:334;s:19:\"pullquote/theme.css\";i:335;s:23:\"pullquote/theme.min.css\";i:336;s:39:\"query-pagination-numbers/editor-rtl.css\";i:337;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:338;s:35:\"query-pagination-numbers/editor.css\";i:339;s:39:\"query-pagination-numbers/editor.min.css\";i:340;s:31:\"query-pagination/editor-rtl.css\";i:341;s:35:\"query-pagination/editor-rtl.min.css\";i:342;s:27:\"query-pagination/editor.css\";i:343;s:31:\"query-pagination/editor.min.css\";i:344;s:30:\"query-pagination/style-rtl.css\";i:345;s:34:\"query-pagination/style-rtl.min.css\";i:346;s:26:\"query-pagination/style.css\";i:347;s:30:\"query-pagination/style.min.css\";i:348;s:25:\"query-title/style-rtl.css\";i:349;s:29:\"query-title/style-rtl.min.css\";i:350;s:21:\"query-title/style.css\";i:351;s:25:\"query-title/style.min.css\";i:352;s:20:\"query/editor-rtl.css\";i:353;s:24:\"query/editor-rtl.min.css\";i:354;s:16:\"query/editor.css\";i:355;s:20:\"query/editor.min.css\";i:356;s:19:\"quote/style-rtl.css\";i:357;s:23:\"quote/style-rtl.min.css\";i:358;s:15:\"quote/style.css\";i:359;s:19:\"quote/style.min.css\";i:360;s:19:\"quote/theme-rtl.css\";i:361;s:23:\"quote/theme-rtl.min.css\";i:362;s:15:\"quote/theme.css\";i:363;s:19:\"quote/theme.min.css\";i:364;s:23:\"read-more/style-rtl.css\";i:365;s:27:\"read-more/style-rtl.min.css\";i:366;s:19:\"read-more/style.css\";i:367;s:23:\"read-more/style.min.css\";i:368;s:18:\"rss/editor-rtl.css\";i:369;s:22:\"rss/editor-rtl.min.css\";i:370;s:14:\"rss/editor.css\";i:371;s:18:\"rss/editor.min.css\";i:372;s:17:\"rss/style-rtl.css\";i:373;s:21:\"rss/style-rtl.min.css\";i:374;s:13:\"rss/style.css\";i:375;s:17:\"rss/style.min.css\";i:376;s:21:\"search/editor-rtl.css\";i:377;s:25:\"search/editor-rtl.min.css\";i:378;s:17:\"search/editor.css\";i:379;s:21:\"search/editor.min.css\";i:380;s:20:\"search/style-rtl.css\";i:381;s:24:\"search/style-rtl.min.css\";i:382;s:16:\"search/style.css\";i:383;s:20:\"search/style.min.css\";i:384;s:20:\"search/theme-rtl.css\";i:385;s:24:\"search/theme-rtl.min.css\";i:386;s:16:\"search/theme.css\";i:387;s:20:\"search/theme.min.css\";i:388;s:24:\"separator/editor-rtl.css\";i:389;s:28:\"separator/editor-rtl.min.css\";i:390;s:20:\"separator/editor.css\";i:391;s:24:\"separator/editor.min.css\";i:392;s:23:\"separator/style-rtl.css\";i:393;s:27:\"separator/style-rtl.min.css\";i:394;s:19:\"separator/style.css\";i:395;s:23:\"separator/style.min.css\";i:396;s:23:\"separator/theme-rtl.css\";i:397;s:27:\"separator/theme-rtl.min.css\";i:398;s:19:\"separator/theme.css\";i:399;s:23:\"separator/theme.min.css\";i:400;s:24:\"shortcode/editor-rtl.css\";i:401;s:28:\"shortcode/editor-rtl.min.css\";i:402;s:20:\"shortcode/editor.css\";i:403;s:24:\"shortcode/editor.min.css\";i:404;s:24:\"site-logo/editor-rtl.css\";i:405;s:28:\"site-logo/editor-rtl.min.css\";i:406;s:20:\"site-logo/editor.css\";i:407;s:24:\"site-logo/editor.min.css\";i:408;s:23:\"site-logo/style-rtl.css\";i:409;s:27:\"site-logo/style-rtl.min.css\";i:410;s:19:\"site-logo/style.css\";i:411;s:23:\"site-logo/style.min.css\";i:412;s:27:\"site-tagline/editor-rtl.css\";i:413;s:31:\"site-tagline/editor-rtl.min.css\";i:414;s:23:\"site-tagline/editor.css\";i:415;s:27:\"site-tagline/editor.min.css\";i:416;s:25:\"site-title/editor-rtl.css\";i:417;s:29:\"site-title/editor-rtl.min.css\";i:418;s:21:\"site-title/editor.css\";i:419;s:25:\"site-title/editor.min.css\";i:420;s:24:\"site-title/style-rtl.css\";i:421;s:28:\"site-title/style-rtl.min.css\";i:422;s:20:\"site-title/style.css\";i:423;s:24:\"site-title/style.min.css\";i:424;s:26:\"social-link/editor-rtl.css\";i:425;s:30:\"social-link/editor-rtl.min.css\";i:426;s:22:\"social-link/editor.css\";i:427;s:26:\"social-link/editor.min.css\";i:428;s:27:\"social-links/editor-rtl.css\";i:429;s:31:\"social-links/editor-rtl.min.css\";i:430;s:23:\"social-links/editor.css\";i:431;s:27:\"social-links/editor.min.css\";i:432;s:26:\"social-links/style-rtl.css\";i:433;s:30:\"social-links/style-rtl.min.css\";i:434;s:22:\"social-links/style.css\";i:435;s:26:\"social-links/style.min.css\";i:436;s:21:\"spacer/editor-rtl.css\";i:437;s:25:\"spacer/editor-rtl.min.css\";i:438;s:17:\"spacer/editor.css\";i:439;s:21:\"spacer/editor.min.css\";i:440;s:20:\"spacer/style-rtl.css\";i:441;s:24:\"spacer/style-rtl.min.css\";i:442;s:16:\"spacer/style.css\";i:443;s:20:\"spacer/style.min.css\";i:444;s:20:\"table/editor-rtl.css\";i:445;s:24:\"table/editor-rtl.min.css\";i:446;s:16:\"table/editor.css\";i:447;s:20:\"table/editor.min.css\";i:448;s:19:\"table/style-rtl.css\";i:449;s:23:\"table/style-rtl.min.css\";i:450;s:15:\"table/style.css\";i:451;s:19:\"table/style.min.css\";i:452;s:19:\"table/theme-rtl.css\";i:453;s:23:\"table/theme-rtl.min.css\";i:454;s:15:\"table/theme.css\";i:455;s:19:\"table/theme.min.css\";i:456;s:23:\"tag-cloud/style-rtl.css\";i:457;s:27:\"tag-cloud/style-rtl.min.css\";i:458;s:19:\"tag-cloud/style.css\";i:459;s:23:\"tag-cloud/style.min.css\";i:460;s:28:\"template-part/editor-rtl.css\";i:461;s:32:\"template-part/editor-rtl.min.css\";i:462;s:24:\"template-part/editor.css\";i:463;s:28:\"template-part/editor.min.css\";i:464;s:27:\"template-part/theme-rtl.css\";i:465;s:31:\"template-part/theme-rtl.min.css\";i:466;s:23:\"template-part/theme.css\";i:467;s:27:\"template-part/theme.min.css\";i:468;s:30:\"term-description/style-rtl.css\";i:469;s:34:\"term-description/style-rtl.min.css\";i:470;s:26:\"term-description/style.css\";i:471;s:30:\"term-description/style.min.css\";i:472;s:27:\"text-columns/editor-rtl.css\";i:473;s:31:\"text-columns/editor-rtl.min.css\";i:474;s:23:\"text-columns/editor.css\";i:475;s:27:\"text-columns/editor.min.css\";i:476;s:26:\"text-columns/style-rtl.css\";i:477;s:30:\"text-columns/style-rtl.min.css\";i:478;s:22:\"text-columns/style.css\";i:479;s:26:\"text-columns/style.min.css\";i:480;s:19:\"verse/style-rtl.css\";i:481;s:23:\"verse/style-rtl.min.css\";i:482;s:15:\"verse/style.css\";i:483;s:19:\"verse/style.min.css\";i:484;s:20:\"video/editor-rtl.css\";i:485;s:24:\"video/editor-rtl.min.css\";i:486;s:16:\"video/editor.css\";i:487;s:20:\"video/editor.min.css\";i:488;s:19:\"video/style-rtl.css\";i:489;s:23:\"video/style-rtl.min.css\";i:490;s:15:\"video/style.css\";i:491;s:19:\"video/style.min.css\";i:492;s:19:\"video/theme-rtl.css\";i:493;s:23:\"video/theme-rtl.min.css\";i:494;s:15:\"video/theme.css\";i:495;s:19:\"video/theme.min.css\";}}','yes'),(122,'recovery_keys','a:0:{}','yes'),(123,'theme_mods_twentytwentythree','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(124,'https_detection_errors','a:0:{}','yes'),(125,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:2:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.4.1.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.4.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.4.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.4.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.4.1\";s:7:\"version\";s:5:\"6.4.1\";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:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.4.1.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.4.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.4.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.4.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.4.1\";s:7:\"version\";s:5:\"6.4.1\";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:9:\"new_files\";s:1:\"1\";}}s:12:\"last_checked\";i:1701347646;s:15:\"version_checked\";s:5:\"6.3.2\";s:12:\"translations\";a:0:{}}','no'),(127,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1701347647;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:3:{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:3:\"5.3\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.5.3.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.79\";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.79.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: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:7:\"checked\";a:3:{s:19:\"akismet/akismet.php\";s:3:\"5.3\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:4:\"7.79\";s:9:\"hello.php\";s:5:\"1.7.2\";}}','no'),(136,'can_compress_scripts','0','yes'),(149,'recently_activated','a:0:{}','yes'),(154,'finished_updating_comment_type','1','yes'),(158,'ai1wm_secret_key','oYQbXYTSy2Jw','yes'),(169,'_site_transient_ai1wm_last_check_for_updates','1701347646','no'),(170,'ai1wm_updater','a:0:{}','yes'),(171,'_site_transient_timeout_theme_roots','1701349447','no'),(172,'_site_transient_theme_roots','a:3:{s:15:\"twentytwentyone\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(173,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1701347647;s:7:\"checked\";a:3:{s:15:\"twentytwentyone\";s:3:\"1.9\";s:17:\"twentytwentythree\";s:3:\"1.2\";s:15:\"twentytwentytwo\";s:3:\"1.5\";}s:8:\"response\";a:3:{s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"2.0\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.2.0.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.3.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.6\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.6.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(174,'_site_transient_timeout_php_check_990bfacb848fa087bcfc06850f5e4447','1701952448','no'),(175,'_site_transient_php_check_990bfacb848fa087bcfc06850f5e4447','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'),(176,'_transient_health-check-site-status-result','{\"good\":14,\"recommended\":6,\"critical\":3}','yes'); /*!40000 ALTER TABLE `py_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `py_postmeta` -- DROP TABLE IF EXISTS `py_postmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `py_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_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `py_postmeta` -- LOCK TABLES `py_postmeta` WRITE; /*!40000 ALTER TABLE `py_postmeta` DISABLE KEYS */; INSERT INTO `py_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'); /*!40000 ALTER TABLE `py_postmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `py_posts` -- DROP TABLE IF EXISTS `py_posts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `py_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_520_ci NOT NULL, `post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open', `post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `pinged` text COLLATE utf8mb4_unicode_520_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_520_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_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=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `py_posts` -- LOCK TABLES `py_posts` WRITE; /*!40000 ALTER TABLE `py_posts` DISABLE KEYS */; INSERT INTO `py_posts` VALUES (1,1,'2023-10-23 07:10:59','2023-10-23 07:10:59','<!-- 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','','','2023-10-23 07:10:59','2023-10-23 07:10:59','',0,'https://wordpressdemo.subscriptionflow.com/payment-widget/?p=1',0,'post','',1),(2,1,'2023-10-23 07:10:59','2023-10-23 07:10:59','<!-- 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ñ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://wordpressdemo.subscriptionflow.com/payment-widget/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','','','2023-10-23 07:10:59','2023-10-23 07:10:59','',0,'https://wordpressdemo.subscriptionflow.com/payment-widget/?page_id=2',0,'page','',0),(3,1,'2023-10-23 07:10:59','2023-10-23 07:10:59','<!-- 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://wordpressdemo.subscriptionflow.com/payment-widget.</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’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 "Remember Me", 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','','','2023-10-23 07:10:59','2023-10-23 07:10:59','',0,'https://wordpressdemo.subscriptionflow.com/payment-widget/?page_id=3',0,'page','',0),(4,0,'2023-10-23 07:11:00','2023-10-23 07:11:00','<!-- wp:page-list /-->','Navigation','','publish','closed','closed','','navigation','','','2023-10-23 07:11:00','2023-10-23 07:11:00','',0,'https://wordpressdemo.subscriptionflow.com/payment-widget/index.php/2023/10/23/navigation/',0,'wp_navigation','',0),(7,1,'2023-10-23 07:53:26','2023-10-23 07:53:26','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-twentytwentythree','','','2023-10-23 07:53:26','2023-10-23 07:53:26','',0,'https://wordpressdemo.subscriptionflow.com/payment-widget/index.php/2023/10/23/wp-global-styles-twentytwentythree/',0,'wp_global_styles','',0); /*!40000 ALTER TABLE `py_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `py_term_relationships` -- DROP TABLE IF EXISTS `py_term_relationships`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `py_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `py_term_relationships` -- LOCK TABLES `py_term_relationships` WRITE; /*!40000 ALTER TABLE `py_term_relationships` DISABLE KEYS */; INSERT INTO `py_term_relationships` VALUES (1,1,0),(7,2,0); /*!40000 ALTER TABLE `py_term_relationships` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `py_term_taxonomy` -- DROP TABLE IF EXISTS `py_term_taxonomy`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `py_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_520_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_520_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=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `py_term_taxonomy` -- LOCK TABLES `py_term_taxonomy` WRITE; /*!40000 ALTER TABLE `py_term_taxonomy` DISABLE KEYS */; INSERT INTO `py_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'wp_theme','',0,1); /*!40000 ALTER TABLE `py_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `py_termmeta` -- DROP TABLE IF EXISTS `py_termmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `py_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_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `py_termmeta` -- LOCK TABLES `py_termmeta` WRITE; /*!40000 ALTER TABLE `py_termmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `py_termmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `py_terms` -- DROP TABLE IF EXISTS `py_terms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `py_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_520_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=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `py_terms` -- LOCK TABLES `py_terms` WRITE; /*!40000 ALTER TABLE `py_terms` DISABLE KEYS */; INSERT INTO `py_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'twentytwentythree','twentytwentythree',0); /*!40000 ALTER TABLE `py_terms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `py_usermeta` -- DROP TABLE IF EXISTS `py_usermeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `py_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_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`umeta_id`), KEY `user_id` (`user_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `py_usermeta` -- LOCK TABLES `py_usermeta` WRITE; /*!40000 ALTER TABLE `py_usermeta` DISABLE KEYS */; INSERT INTO `py_usermeta` VALUES (1,1,'nickname','subscriptionflow_Demo'),(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,'py_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'py_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:1:{s:64:\"d083d71ada4d11ef479d7ce75beb0baa364679d2572aeeb8ef3f78e62cdf2a4c\";a:4:{s:10:\"expiration\";i:1699254666;s:2:\"ip\";s:15:\"202.163.113.241\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36\";s:5:\"login\";i:1698045066;}}'),(17,1,'py_user-settings','posts_list_mode=list&libraryContent=browse&editor=tinymce'),(18,1,'py_user-settings-time','1698045062'),(19,1,'py_dashboard_quick_press_last_post_id','5'),(20,1,'community-events-location','a:1:{s:2:\"ip\";s:13:\"202.163.113.0\";}'); /*!40000 ALTER TABLE `py_usermeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `py_users` -- DROP TABLE IF EXISTS `py_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `py_users` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_status` int(11) NOT NULL DEFAULT '0', `display_name` varchar(250) COLLATE utf8mb4_unicode_520_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_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `py_users` -- LOCK TABLES `py_users` WRITE; /*!40000 ALTER TABLE `py_users` DISABLE KEYS */; INSERT INTO `py_users` VALUES (1,'subscriptionflow_Demo','$P$BYVy6sEsJdrvZL63rFZcoGd/owEc/00','subscriptionflow_demo','info@subscriptionflow.com','https://wordpressdemo.subscriptionflow.com/payment-widget','2023-10-23 07:10:59','',0,'subscriptionflow_Demo'); /*!40000 ALTER TABLE `py_users` ENABLE KEYS */; UNLOCK TABLES; -- -- 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, `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, `priority` tinyint(3) unsigned NOT NULL DEFAULT '10', 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=679 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 (609,'wp_mail_smtp_summary_report_email','complete','2023-12-18 05:58:33','2023-12-18 05:58:33','[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1702879113;s:18:\"\0*\0first_timestamp\";i:1670853600;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1702879113;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',5,1,'2023-12-18 06:01:02','2023-12-18 06:01:02',0,NULL,10),(610,'wp_mail_smtp_admin_notifications_update','complete','2023-12-12 10:52:05','2023-12-12 10:52:05','[3]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1702378325;s:18:\"\0*\0first_timestamp\";i:1698296975;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1702378325;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2023-12-12 10:53:27','2023-12-12 10:53:27',0,NULL,10),(611,'woocommerce_cleanup_draft_orders','complete','2023-12-12 10:52:05','2023-12-12 10:52:05','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1702378325;s:18:\"\0*\0first_timestamp\";i:1670335442;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1702378325;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-12-12 10:53:27','2023-12-12 10:53:27',0,NULL,10),(612,'wp_mail_smtp_admin_notifications_update','complete','2023-12-13 10:53:27','2023-12-13 10:53:27','[3]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1702464807;s:18:\"\0*\0first_timestamp\";i:1698296975;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1702464807;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2023-12-13 10:56:09','2023-12-13 10:56:09',0,NULL,10),(613,'woocommerce_cleanup_draft_orders','complete','2023-12-13 10:53:27','2023-12-13 10:53:27','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1702464807;s:18:\"\0*\0first_timestamp\";i:1670335442;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1702464807;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-12-13 10:56:09','2023-12-13 10:56:09',0,NULL,10),(614,'wp_mail_smtp_admin_notifications_update','complete','2023-12-14 10:56:09','2023-12-14 10:56:09','[3]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1702551369;s:18:\"\0*\0first_timestamp\";i:1698296975;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1702551369;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2023-12-14 10:56:49','2023-12-14 10:56:49',0,NULL,10),(615,'woocommerce_cleanup_draft_orders','complete','2023-12-14 10:56:09','2023-12-14 10:56:09','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1702551369;s:18:\"\0*\0first_timestamp\";i:1670335442;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1702551369;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-12-14 10:56:49','2023-12-14 10:56:49',0,NULL,10),(616,'wp_mail_smtp_admin_notifications_update','complete','2023-12-15 10:56:49','2023-12-15 10:56:49','[3]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1702637809;s:18:\"\0*\0first_timestamp\";i:1698296975;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1702637809;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2023-12-15 10:58:55','2023-12-15 10:58:55',0,NULL,10),(617,'woocommerce_cleanup_draft_orders','complete','2023-12-15 10:56:49','2023-12-15 10:56:49','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1702637809;s:18:\"\0*\0first_timestamp\";i:1670335442;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1702637809;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-12-15 10:58:55','2023-12-15 10:58:55',0,NULL,10),(618,'wp_mail_smtp_admin_notifications_update','complete','2023-12-16 10:58:55','2023-12-16 10:58:55','[3]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1702724335;s:18:\"\0*\0first_timestamp\";i:1698296975;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1702724335;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2023-12-16 11:05:29','2023-12-16 11:05:29',0,NULL,10),(619,'woocommerce_cleanup_draft_orders','complete','2023-12-16 10:58:55','2023-12-16 10:58:55','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1702724335;s:18:\"\0*\0first_timestamp\";i:1670335442;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1702724335;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-12-16 11:05:29','2023-12-16 11:05:29',0,NULL,10),(620,'wp_mail_smtp_admin_notifications_update','complete','2023-12-17 11:05:29','2023-12-17 11:05:29','[3]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1702811129;s:18:\"\0*\0first_timestamp\";i:1698296975;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1702811129;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2023-12-17 11:17:33','2023-12-17 11:17:33',0,NULL,10),(621,'woocommerce_cleanup_draft_orders','complete','2023-12-17 11:05:29','2023-12-17 11:05:29','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1702811129;s:18:\"\0*\0first_timestamp\";i:1670335442;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1702811129;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-12-17 11:17:33','2023-12-17 11:17:33',0,NULL,10),(622,'wp_mail_smtp_admin_notifications_update','complete','2023-12-18 11:17:33','2023-12-18 11:17:33','[3]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1702898253;s:18:\"\0*\0first_timestamp\";i:1698296975;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1702898253;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2023-12-18 11:21:39','2023-12-18 11:21:39',0,NULL,10),(623,'woocommerce_cleanup_draft_orders','complete','2023-12-18 11:17:33','2023-12-18 11:17:33','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1702898253;s:18:\"\0*\0first_timestamp\";i:1670335442;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1702898253;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-12-18 11:21:39','2023-12-18 11:21:39',0,NULL,10),(624,'wp_mail_smtp_summary_report_email','complete','2023-12-25 06:01:02','2023-12-25 06:01:02','[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703484062;s:18:\"\0*\0first_timestamp\";i:1670853600;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703484062;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',5,1,'2023-12-25 06:06:46','2023-12-25 06:06:46',0,NULL,10),(625,'wp_mail_smtp_admin_notifications_update','complete','2023-12-19 11:21:39','2023-12-19 11:21:39','[3]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1702984899;s:18:\"\0*\0first_timestamp\";i:1698296975;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1702984899;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2023-12-19 11:30:26','2023-12-19 11:30:26',0,NULL,10),(626,'woocommerce_cleanup_draft_orders','complete','2023-12-19 11:21:39','2023-12-19 11:21:39','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1702984899;s:18:\"\0*\0first_timestamp\";i:1670335442;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1702984899;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-12-19 11:30:26','2023-12-19 11:30:26',0,NULL,10),(627,'wp_mail_smtp_admin_notifications_update','complete','2023-12-20 11:30:26','2023-12-20 11:30:26','[3]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703071826;s:18:\"\0*\0first_timestamp\";i:1698296975;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703071826;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2023-12-20 11:30:50','2023-12-20 11:30:50',0,NULL,10),(628,'woocommerce_cleanup_draft_orders','complete','2023-12-20 11:30:26','2023-12-20 11:30:26','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703071826;s:18:\"\0*\0first_timestamp\";i:1670335442;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703071826;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-12-20 11:30:51','2023-12-20 11:30:51',0,NULL,10),(629,'wp_mail_smtp_admin_notifications_update','complete','2023-12-21 11:30:50','2023-12-21 11:30:50','[3]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703158250;s:18:\"\0*\0first_timestamp\";i:1698296975;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703158250;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2023-12-21 11:39:44','2023-12-21 11:39:44',0,NULL,10),(630,'woocommerce_cleanup_draft_orders','complete','2023-12-21 11:30:51','2023-12-21 11:30:51','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703158251;s:18:\"\0*\0first_timestamp\";i:1670335442;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703158251;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-12-21 11:39:44','2023-12-21 11:39:44',0,NULL,10),(631,'wp_mail_smtp_admin_notifications_update','complete','2023-12-22 11:39:44','2023-12-22 11:39:44','[3]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703245184;s:18:\"\0*\0first_timestamp\";i:1698296975;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703245184;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2023-12-22 11:46:51','2023-12-22 11:46:51',0,NULL,10),(632,'woocommerce_cleanup_draft_orders','complete','2023-12-22 11:39:44','2023-12-22 11:39:44','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703245184;s:18:\"\0*\0first_timestamp\";i:1670335442;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703245184;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-12-22 11:46:51','2023-12-22 11:46:51',0,NULL,10),(633,'wp_mail_smtp_admin_notifications_update','complete','2023-12-23 11:46:51','2023-12-23 11:46:51','[3]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703332011;s:18:\"\0*\0first_timestamp\";i:1698296975;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703332011;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2023-12-23 12:02:29','2023-12-23 12:02:29',0,NULL,10),(634,'woocommerce_cleanup_draft_orders','complete','2023-12-23 11:46:51','2023-12-23 11:46:51','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703332011;s:18:\"\0*\0first_timestamp\";i:1670335442;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703332011;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-12-23 12:02:29','2023-12-23 12:02:29',0,NULL,10),(635,'wp_mail_smtp_admin_notifications_update','complete','2023-12-24 12:02:29','2023-12-24 12:02:29','[3]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703419349;s:18:\"\0*\0first_timestamp\";i:1698296975;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703419349;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2023-12-24 12:05:16','2023-12-24 12:05:16',0,NULL,10),(636,'woocommerce_cleanup_draft_orders','complete','2023-12-24 12:02:29','2023-12-24 12:02:29','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703419349;s:18:\"\0*\0first_timestamp\";i:1670335442;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703419349;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-12-24 12:05:16','2023-12-24 12:05:16',0,NULL,10),(637,'wp_mail_smtp_admin_notifications_update','complete','2023-12-25 12:05:16','2023-12-25 12:05:16','[3]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703505916;s:18:\"\0*\0first_timestamp\";i:1698296975;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703505916;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2023-12-25 12:11:05','2023-12-25 12:11:05',0,NULL,10),(638,'woocommerce_cleanup_draft_orders','complete','2023-12-25 12:05:16','2023-12-25 12:05:16','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703505916;s:18:\"\0*\0first_timestamp\";i:1670335442;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703505916;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-12-25 12:11:05','2023-12-25 12:11:05',0,NULL,10),(639,'woocommerce_update_marketplace_suggestions','complete','2023-12-24 12:58:49','2023-12-24 12:58:49','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1703422729;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1703422729;}',7,1,'2023-12-24 13:16:51','2023-12-24 13:16:51',0,NULL,10),(640,'wp_mail_smtp_summary_report_email','complete','2024-01-01 06:06:46','2024-01-01 06:06:46','[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704089206;s:18:\"\0*\0first_timestamp\";i:1670853600;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704089206;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',5,1,'2024-01-01 06:14:15','2024-01-01 06:14:15',0,NULL,10),(641,'wp_mail_smtp_admin_notifications_update','complete','2023-12-26 12:11:05','2023-12-26 12:11:05','[3]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703592665;s:18:\"\0*\0first_timestamp\";i:1698296975;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703592665;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2023-12-26 12:19:04','2023-12-26 12:19:04',0,NULL,10),(642,'woocommerce_cleanup_draft_orders','complete','2023-12-26 12:11:05','2023-12-26 12:11:05','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703592665;s:18:\"\0*\0first_timestamp\";i:1670335442;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703592665;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-12-26 12:19:04','2023-12-26 12:19:04',0,NULL,10),(643,'wp_mail_smtp_admin_notifications_update','complete','2023-12-27 12:19:04','2023-12-27 12:19:04','[3]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703679544;s:18:\"\0*\0first_timestamp\";i:1698296975;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703679544;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2023-12-27 12:20:05','2023-12-27 12:20:05',0,NULL,10),(644,'woocommerce_cleanup_draft_orders','complete','2023-12-27 12:19:04','2023-12-27 12:19:04','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703679544;s:18:\"\0*\0first_timestamp\";i:1670335442;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703679544;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-12-27 12:20:05','2023-12-27 12:20:05',0,NULL,10),(645,'wp_mail_smtp_admin_notifications_update','complete','2023-12-28 12:20:05','2023-12-28 12:20:05','[3]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703766005;s:18:\"\0*\0first_timestamp\";i:1698296975;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703766005;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2023-12-28 12:25:07','2023-12-28 12:25:07',0,NULL,10),(646,'woocommerce_cleanup_draft_orders','complete','2023-12-28 12:20:05','2023-12-28 12:20:05','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703766005;s:18:\"\0*\0first_timestamp\";i:1670335442;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703766005;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-12-28 12:25:07','2023-12-28 12:25:07',0,NULL,10),(647,'wp_mail_smtp_admin_notifications_update','complete','2023-12-29 12:25:07','2023-12-29 12:25:07','[3]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703852707;s:18:\"\0*\0first_timestamp\";i:1698296975;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703852707;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2023-12-29 12:55:30','2023-12-29 12:55:30',0,NULL,10),(648,'woocommerce_cleanup_draft_orders','complete','2023-12-29 12:25:07','2023-12-29 12:25:07','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703852707;s:18:\"\0*\0first_timestamp\";i:1670335442;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703852707;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-12-29 12:55:30','2023-12-29 12:55:30',0,NULL,10),(649,'wp_mail_smtp_admin_notifications_update','complete','2023-12-30 12:55:30','2023-12-30 12:55:30','[3]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703940930;s:18:\"\0*\0first_timestamp\";i:1698296975;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703940930;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2023-12-30 13:30:18','2023-12-30 13:30:18',0,NULL,10),(650,'woocommerce_cleanup_draft_orders','complete','2023-12-30 12:55:30','2023-12-30 12:55:30','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703940930;s:18:\"\0*\0first_timestamp\";i:1670335442;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703940930;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-12-30 13:30:18','2023-12-30 13:30:18',0,NULL,10),(651,'wp_mail_smtp_admin_notifications_update','complete','2023-12-31 13:30:18','2023-12-31 13:30:18','[3]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704029418;s:18:\"\0*\0first_timestamp\";i:1698296975;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704029418;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2023-12-31 13:32:35','2023-12-31 13:32:35',0,NULL,10),(652,'woocommerce_cleanup_draft_orders','complete','2023-12-31 13:30:18','2023-12-31 13:30:18','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704029418;s:18:\"\0*\0first_timestamp\";i:1670335442;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704029418;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-12-31 13:32:35','2023-12-31 13:32:35',0,NULL,10),(653,'wp_mail_smtp_admin_notifications_update','complete','2024-01-01 13:32:35','2024-01-01 13:32:35','[3]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704115955;s:18:\"\0*\0first_timestamp\";i:1698296975;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704115955;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2024-01-01 13:36:35','2024-01-01 13:36:35',0,NULL,10),(654,'woocommerce_cleanup_draft_orders','complete','2024-01-01 13:32:35','2024-01-01 13:32:35','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704115955;s:18:\"\0*\0first_timestamp\";i:1670335442;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704115955;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2024-01-01 13:36:35','2024-01-01 13:36:35',0,NULL,10),(655,'wp_mail_smtp_summary_report_email','complete','2024-01-08 06:14:15','2024-01-08 06:14:15','[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704694455;s:18:\"\0*\0first_timestamp\";i:1670853600;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704694455;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',5,1,'2024-01-08 06:18:36','2024-01-08 06:18:36',0,NULL,10),(656,'wp_mail_smtp_admin_notifications_update','complete','2024-01-02 13:36:35','2024-01-02 13:36:35','[3]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704202595;s:18:\"\0*\0first_timestamp\";i:1698296975;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704202595;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2024-01-02 13:49:45','2024-01-02 13:49:45',0,NULL,10),(657,'woocommerce_cleanup_draft_orders','complete','2024-01-02 13:36:35','2024-01-02 13:36:35','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704202595;s:18:\"\0*\0first_timestamp\";i:1670335442;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704202595;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2024-01-02 13:49:45','2024-01-02 13:49:45',0,NULL,10),(658,'wp_mail_smtp_admin_notifications_update','complete','2024-01-03 13:49:45','2024-01-03 13:49:45','[3]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704289785;s:18:\"\0*\0first_timestamp\";i:1698296975;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704289785;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2024-01-03 14:06:55','2024-01-03 14:06:55',0,NULL,10),(659,'woocommerce_cleanup_draft_orders','complete','2024-01-03 13:49:45','2024-01-03 13:49:45','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704289785;s:18:\"\0*\0first_timestamp\";i:1670335442;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704289785;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2024-01-03 14:06:55','2024-01-03 14:06:55',0,NULL,10),(660,'wp_mail_smtp_admin_notifications_update','complete','2024-01-04 14:06:55','2024-01-04 14:06:55','[3]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704377215;s:18:\"\0*\0first_timestamp\";i:1698296975;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704377215;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2024-01-04 15:08:50','2024-01-04 15:08:50',0,NULL,10),(661,'woocommerce_cleanup_draft_orders','complete','2024-01-04 14:06:55','2024-01-04 14:06:55','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704377215;s:18:\"\0*\0first_timestamp\";i:1670335442;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704377215;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2024-01-04 15:08:50','2024-01-04 15:08:50',0,NULL,10),(662,'wp_mail_smtp_admin_notifications_update','complete','2024-01-05 15:08:50','2024-01-05 15:08:50','[3]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704467330;s:18:\"\0*\0first_timestamp\";i:1698296975;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704467330;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2024-01-05 15:33:56','2024-01-05 15:33:56',0,NULL,10),(663,'woocommerce_cleanup_draft_orders','complete','2024-01-05 15:08:50','2024-01-05 15:08:50','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704467330;s:18:\"\0*\0first_timestamp\";i:1670335442;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704467330;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2024-01-05 15:33:56','2024-01-05 15:33:56',0,NULL,10),(664,'wp_mail_smtp_admin_notifications_update','complete','2024-01-06 15:33:56','2024-01-06 15:33:56','[3]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704555236;s:18:\"\0*\0first_timestamp\";i:1698296975;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704555236;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2024-01-06 16:03:45','2024-01-06 16:03:45',0,NULL,10),(665,'woocommerce_cleanup_draft_orders','complete','2024-01-06 15:33:56','2024-01-06 15:33:56','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704555236;s:18:\"\0*\0first_timestamp\";i:1670335442;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704555236;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2024-01-06 16:03:45','2024-01-06 16:03:45',0,NULL,10),(666,'wp_mail_smtp_admin_notifications_update','complete','2024-01-07 16:03:45','2024-01-07 16:03:45','[3]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704643425;s:18:\"\0*\0first_timestamp\";i:1698296975;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704643425;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2024-01-07 16:33:21','2024-01-07 16:33:21',0,NULL,10),(667,'woocommerce_cleanup_draft_orders','complete','2024-01-07 16:03:45','2024-01-07 16:03:45','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704643425;s:18:\"\0*\0first_timestamp\";i:1670335442;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704643425;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2024-01-07 16:33:21','2024-01-07 16:33:21',0,NULL,10),(668,'wp_mail_smtp_admin_notifications_update','complete','2024-01-08 16:33:21','2024-01-08 16:33:21','[3]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704731601;s:18:\"\0*\0first_timestamp\";i:1698296975;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704731601;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2024-01-08 16:53:47','2024-01-08 16:53:47',0,NULL,10),(669,'woocommerce_cleanup_draft_orders','complete','2024-01-08 16:33:21','2024-01-08 16:33:21','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704731601;s:18:\"\0*\0first_timestamp\";i:1670335442;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704731601;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2024-01-08 16:53:47','2024-01-08 16:53:47',0,NULL,10),(670,'wp_mail_smtp_summary_report_email','pending','2024-01-15 06:18:36','2024-01-15 06:18:36','[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1705299516;s:18:\"\0*\0first_timestamp\";i:1670853600;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1705299516;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',5,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL,10),(671,'wp_mail_smtp_admin_notifications_update','complete','2024-01-09 16:53:47','2024-01-09 16:53:47','[3]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704819227;s:18:\"\0*\0first_timestamp\";i:1698296975;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704819227;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2024-01-09 19:14:11','2024-01-09 19:14:11',0,NULL,10),(672,'woocommerce_cleanup_draft_orders','complete','2024-01-09 16:53:47','2024-01-09 16:53:47','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704819227;s:18:\"\0*\0first_timestamp\";i:1670335442;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704819227;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2024-01-09 19:14:11','2024-01-09 19:14:11',0,NULL,10),(673,'wp_mail_smtp_admin_notifications_update','complete','2024-01-10 19:14:11','2024-01-10 19:14:11','[3]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704914051;s:18:\"\0*\0first_timestamp\";i:1698296975;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704914051;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2024-01-10 19:41:26','2024-01-10 19:41:26',0,NULL,10),(674,'woocommerce_cleanup_draft_orders','complete','2024-01-10 19:14:11','2024-01-10 19:14:11','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704914051;s:18:\"\0*\0first_timestamp\";i:1670335442;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704914051;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2024-01-10 19:41:26','2024-01-10 19:41:26',0,NULL,10),(675,'wp_mail_smtp_admin_notifications_update','complete','2024-01-11 19:41:26','2024-01-11 19:41:26','[3]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1705002086;s:18:\"\0*\0first_timestamp\";i:1698296975;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1705002086;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2024-01-11 20:02:13','2024-01-11 20:02:13',0,NULL,10),(676,'woocommerce_cleanup_draft_orders','complete','2024-01-11 19:41:26','2024-01-11 19:41:26','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1705002086;s:18:\"\0*\0first_timestamp\";i:1670335442;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1705002086;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2024-01-11 20:02:13','2024-01-11 20:02:13',0,NULL,10),(677,'wp_mail_smtp_admin_notifications_update','pending','2024-01-12 20:02:13','2024-01-12 20:02:13','[3]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1705089733;s:18:\"\0*\0first_timestamp\";i:1698296975;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1705089733;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL,10),(678,'woocommerce_cleanup_draft_orders','pending','2024-01-12 20:02:13','2024-01-12 20:02:13','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1705089733;s:18:\"\0*\0first_timestamp\";i:1670335442;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1705089733;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL,10); /*!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 AUTO_INCREMENT=16861 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=8 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'),(2,'woocommerce-db-updates'),(3,'wc_update_product_default_cat'),(4,'wc-admin-data'),(5,'wp_mail_smtp'),(6,'woocommerce-remote-inbox-engine'),(7,''); /*!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=2008 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 (1800,609,'action created','2023-12-11 05:58:33','2023-12-11 05:58:33'),(1803,610,'action created','2023-12-11 10:52:05','2023-12-11 10:52:05'),(1806,611,'action created','2023-12-11 10:52:05','2023-12-11 10:52:05'),(1807,610,'action started via WP Cron','2023-12-12 10:53:27','2023-12-12 10:53:27'),(1808,610,'action complete via WP Cron','2023-12-12 10:53:27','2023-12-12 10:53:27'),(1809,612,'action created','2023-12-12 10:53:27','2023-12-12 10:53:27'),(1810,611,'action started via WP Cron','2023-12-12 10:53:27','2023-12-12 10:53:27'),(1811,611,'action complete via WP Cron','2023-12-12 10:53:27','2023-12-12 10:53:27'),(1812,613,'action created','2023-12-12 10:53:27','2023-12-12 10:53:27'),(1813,612,'action started via WP Cron','2023-12-13 10:56:09','2023-12-13 10:56:09'),(1814,612,'action complete via WP Cron','2023-12-13 10:56:09','2023-12-13 10:56:09'),(1815,614,'action created','2023-12-13 10:56:09','2023-12-13 10:56:09'),(1816,613,'action started via WP Cron','2023-12-13 10:56:09','2023-12-13 10:56:09'),(1817,613,'action complete via WP Cron','2023-12-13 10:56:09','2023-12-13 10:56:09'),(1818,615,'action created','2023-12-13 10:56:09','2023-12-13 10:56:09'),(1819,614,'action started via WP Cron','2023-12-14 10:56:49','2023-12-14 10:56:49'),(1820,614,'action complete via WP Cron','2023-12-14 10:56:49','2023-12-14 10:56:49'),(1821,616,'action created','2023-12-14 10:56:49','2023-12-14 10:56:49'),(1822,615,'action started via WP Cron','2023-12-14 10:56:49','2023-12-14 10:56:49'),(1823,615,'action complete via WP Cron','2023-12-14 10:56:49','2023-12-14 10:56:49'),(1824,617,'action created','2023-12-14 10:56:49','2023-12-14 10:56:49'),(1825,616,'action started via WP Cron','2023-12-15 10:58:54','2023-12-15 10:58:54'),(1826,616,'action complete via WP Cron','2023-12-15 10:58:55','2023-12-15 10:58:55'),(1827,618,'action created','2023-12-15 10:58:55','2023-12-15 10:58:55'),(1828,617,'action started via WP Cron','2023-12-15 10:58:55','2023-12-15 10:58:55'),(1829,617,'action complete via WP Cron','2023-12-15 10:58:55','2023-12-15 10:58:55'),(1830,619,'action created','2023-12-15 10:58:55','2023-12-15 10:58:55'),(1831,618,'action started via WP Cron','2023-12-16 11:05:29','2023-12-16 11:05:29'),(1832,618,'action complete via WP Cron','2023-12-16 11:05:29','2023-12-16 11:05:29'),(1833,620,'action created','2023-12-16 11:05:29','2023-12-16 11:05:29'),(1834,619,'action started via WP Cron','2023-12-16 11:05:29','2023-12-16 11:05:29'),(1835,619,'action complete via WP Cron','2023-12-16 11:05:29','2023-12-16 11:05:29'),(1836,621,'action created','2023-12-16 11:05:29','2023-12-16 11:05:29'),(1837,620,'action started via WP Cron','2023-12-17 11:17:33','2023-12-17 11:17:33'),(1838,620,'action complete via WP Cron','2023-12-17 11:17:33','2023-12-17 11:17:33'),(1839,622,'action created','2023-12-17 11:17:33','2023-12-17 11:17:33'),(1840,621,'action started via WP Cron','2023-12-17 11:17:33','2023-12-17 11:17:33'),(1841,621,'action complete via WP Cron','2023-12-17 11:17:33','2023-12-17 11:17:33'),(1842,623,'action created','2023-12-17 11:17:33','2023-12-17 11:17:33'),(1843,609,'action started via WP Cron','2023-12-18 06:01:02','2023-12-18 06:01:02'),(1844,609,'action complete via WP Cron','2023-12-18 06:01:02','2023-12-18 06:01:02'),(1845,624,'action created','2023-12-18 06:01:02','2023-12-18 06:01:02'),(1846,622,'action started via WP Cron','2023-12-18 11:21:38','2023-12-18 11:21:38'),(1847,622,'action complete via WP Cron','2023-12-18 11:21:39','2023-12-18 11:21:39'),(1848,625,'action created','2023-12-18 11:21:39','2023-12-18 11:21:39'),(1849,623,'action started via WP Cron','2023-12-18 11:21:39','2023-12-18 11:21:39'),(1850,623,'action complete via WP Cron','2023-12-18 11:21:39','2023-12-18 11:21:39'),(1851,626,'action created','2023-12-18 11:21:39','2023-12-18 11:21:39'),(1852,625,'action started via WP Cron','2023-12-19 11:30:26','2023-12-19 11:30:26'),(1853,625,'action complete via WP Cron','2023-12-19 11:30:26','2023-12-19 11:30:26'),(1854,627,'action created','2023-12-19 11:30:26','2023-12-19 11:30:26'),(1855,626,'action started via WP Cron','2023-12-19 11:30:26','2023-12-19 11:30:26'),(1856,626,'action complete via WP Cron','2023-12-19 11:30:26','2023-12-19 11:30:26'),(1857,628,'action created','2023-12-19 11:30:26','2023-12-19 11:30:26'),(1858,627,'action started via WP Cron','2023-12-20 11:30:50','2023-12-20 11:30:50'),(1859,627,'action complete via WP Cron','2023-12-20 11:30:50','2023-12-20 11:30:50'),(1860,629,'action created','2023-12-20 11:30:50','2023-12-20 11:30:50'),(1861,628,'action started via WP Cron','2023-12-20 11:30:50','2023-12-20 11:30:50'),(1862,628,'action complete via WP Cron','2023-12-20 11:30:51','2023-12-20 11:30:51'),(1863,630,'action created','2023-12-20 11:30:51','2023-12-20 11:30:51'),(1864,629,'action started via WP Cron','2023-12-21 11:39:44','2023-12-21 11:39:44'),(1865,629,'action complete via WP Cron','2023-12-21 11:39:44','2023-12-21 11:39:44'),(1866,631,'action created','2023-12-21 11:39:44','2023-12-21 11:39:44'),(1867,630,'action started via WP Cron','2023-12-21 11:39:44','2023-12-21 11:39:44'),(1868,630,'action complete via WP Cron','2023-12-21 11:39:44','2023-12-21 11:39:44'),(1869,632,'action created','2023-12-21 11:39:44','2023-12-21 11:39:44'),(1870,631,'action started via WP Cron','2023-12-22 11:46:51','2023-12-22 11:46:51'),(1871,631,'action complete via WP Cron','2023-12-22 11:46:51','2023-12-22 11:46:51'),(1872,633,'action created','2023-12-22 11:46:51','2023-12-22 11:46:51'),(1873,632,'action started via WP Cron','2023-12-22 11:46:51','2023-12-22 11:46:51'),(1874,632,'action complete via WP Cron','2023-12-22 11:46:51','2023-12-22 11:46:51'),(1875,634,'action created','2023-12-22 11:46:51','2023-12-22 11:46:51'),(1876,633,'action started via WP Cron','2023-12-23 12:02:29','2023-12-23 12:02:29'),(1877,633,'action complete via WP Cron','2023-12-23 12:02:29','2023-12-23 12:02:29'),(1878,635,'action created','2023-12-23 12:02:29','2023-12-23 12:02:29'),(1879,634,'action started via WP Cron','2023-12-23 12:02:29','2023-12-23 12:02:29'),(1880,634,'action complete via WP Cron','2023-12-23 12:02:29','2023-12-23 12:02:29'),(1881,636,'action created','2023-12-23 12:02:29','2023-12-23 12:02:29'),(1882,635,'action started via WP Cron','2023-12-24 12:05:15','2023-12-24 12:05:15'),(1883,635,'action complete via WP Cron','2023-12-24 12:05:16','2023-12-24 12:05:16'),(1884,637,'action created','2023-12-24 12:05:16','2023-12-24 12:05:16'),(1885,636,'action started via WP Cron','2023-12-24 12:05:16','2023-12-24 12:05:16'),(1886,636,'action complete via WP Cron','2023-12-24 12:05:16','2023-12-24 12:05:16'),(1887,638,'action created','2023-12-24 12:05:16','2023-12-24 12:05:16'),(1888,639,'action created','2023-12-24 12:58:49','2023-12-24 12:58:49'),(1889,639,'action started via WP Cron','2023-12-24 13:16:51','2023-12-24 13:16:51'),(1890,639,'action complete via WP Cron','2023-12-24 13:16:51','2023-12-24 13:16:51'),(1891,624,'action started via WP Cron','2023-12-25 06:06:46','2023-12-25 06:06:46'),(1892,624,'action complete via WP Cron','2023-12-25 06:06:46','2023-12-25 06:06:46'),(1893,640,'action created','2023-12-25 06:06:46','2023-12-25 06:06:46'),(1894,637,'action started via WP Cron','2023-12-25 12:11:05','2023-12-25 12:11:05'),(1895,637,'action complete via WP Cron','2023-12-25 12:11:05','2023-12-25 12:11:05'),(1896,641,'action created','2023-12-25 12:11:05','2023-12-25 12:11:05'),(1897,638,'action started via WP Cron','2023-12-25 12:11:05','2023-12-25 12:11:05'),(1898,638,'action complete via WP Cron','2023-12-25 12:11:05','2023-12-25 12:11:05'),(1899,642,'action created','2023-12-25 12:11:05','2023-12-25 12:11:05'),(1900,641,'action started via WP Cron','2023-12-26 12:19:04','2023-12-26 12:19:04'),(1901,641,'action complete via WP Cron','2023-12-26 12:19:04','2023-12-26 12:19:04'),(1902,643,'action created','2023-12-26 12:19:04','2023-12-26 12:19:04'),(1903,642,'action started via WP Cron','2023-12-26 12:19:04','2023-12-26 12:19:04'),(1904,642,'action complete via WP Cron','2023-12-26 12:19:04','2023-12-26 12:19:04'),(1905,644,'action created','2023-12-26 12:19:04','2023-12-26 12:19:04'),(1906,643,'action started via WP Cron','2023-12-27 12:20:05','2023-12-27 12:20:05'),(1907,643,'action complete via WP Cron','2023-12-27 12:20:05','2023-12-27 12:20:05'),(1908,645,'action created','2023-12-27 12:20:05','2023-12-27 12:20:05'),(1909,644,'action started via WP Cron','2023-12-27 12:20:05','2023-12-27 12:20:05'),(1910,644,'action complete via WP Cron','2023-12-27 12:20:05','2023-12-27 12:20:05'),(1911,646,'action created','2023-12-27 12:20:05','2023-12-27 12:20:05'),(1912,645,'action started via WP Cron','2023-12-28 12:25:07','2023-12-28 12:25:07'),(1913,645,'action complete via WP Cron','2023-12-28 12:25:07','2023-12-28 12:25:07'),(1914,647,'action created','2023-12-28 12:25:07','2023-12-28 12:25:07'),(1915,646,'action started via WP Cron','2023-12-28 12:25:07','2023-12-28 12:25:07'),(1916,646,'action complete via WP Cron','2023-12-28 12:25:07','2023-12-28 12:25:07'),(1917,648,'action created','2023-12-28 12:25:07','2023-12-28 12:25:07'),(1918,647,'action started via WP Cron','2023-12-29 12:55:30','2023-12-29 12:55:30'),(1919,647,'action complete via WP Cron','2023-12-29 12:55:30','2023-12-29 12:55:30'),(1920,649,'action created','2023-12-29 12:55:30','2023-12-29 12:55:30'),(1921,648,'action started via WP Cron','2023-12-29 12:55:30','2023-12-29 12:55:30'),(1922,648,'action complete via WP Cron','2023-12-29 12:55:30','2023-12-29 12:55:30'),(1923,650,'action created','2023-12-29 12:55:30','2023-12-29 12:55:30'),(1924,649,'action started via WP Cron','2023-12-30 13:30:18','2023-12-30 13:30:18'),(1925,649,'action complete via WP Cron','2023-12-30 13:30:18','2023-12-30 13:30:18'),(1926,651,'action created','2023-12-30 13:30:18','2023-12-30 13:30:18'),(1927,650,'action started via WP Cron','2023-12-30 13:30:18','2023-12-30 13:30:18'),(1928,650,'action complete via WP Cron','2023-12-30 13:30:18','2023-12-30 13:30:18'),(1929,652,'action created','2023-12-30 13:30:18','2023-12-30 13:30:18'),(1930,651,'action started via WP Cron','2023-12-31 13:32:35','2023-12-31 13:32:35'),(1931,651,'action complete via WP Cron','2023-12-31 13:32:35','2023-12-31 13:32:35'),(1932,653,'action created','2023-12-31 13:32:35','2023-12-31 13:32:35'),(1933,652,'action started via WP Cron','2023-12-31 13:32:35','2023-12-31 13:32:35'),(1934,652,'action complete via WP Cron','2023-12-31 13:32:35','2023-12-31 13:32:35'),(1935,654,'action created','2023-12-31 13:32:35','2023-12-31 13:32:35'),(1936,640,'action started via WP Cron','2024-01-01 06:14:14','2024-01-01 06:14:14'),(1937,640,'action complete via WP Cron','2024-01-01 06:14:15','2024-01-01 06:14:15'),(1938,655,'action created','2024-01-01 06:14:15','2024-01-01 06:14:15'),(1939,653,'action started via WP Cron','2024-01-01 13:36:35','2024-01-01 13:36:35'),(1940,653,'action complete via WP Cron','2024-01-01 13:36:35','2024-01-01 13:36:35'),(1941,656,'action created','2024-01-01 13:36:35','2024-01-01 13:36:35'),(1942,654,'action started via WP Cron','2024-01-01 13:36:35','2024-01-01 13:36:35'),(1943,654,'action complete via WP Cron','2024-01-01 13:36:35','2024-01-01 13:36:35'),(1944,657,'action created','2024-01-01 13:36:35','2024-01-01 13:36:35'),(1945,656,'action started via WP Cron','2024-01-02 13:49:45','2024-01-02 13:49:45'),(1946,656,'action complete via WP Cron','2024-01-02 13:49:45','2024-01-02 13:49:45'),(1947,658,'action created','2024-01-02 13:49:45','2024-01-02 13:49:45'),(1948,657,'action started via WP Cron','2024-01-02 13:49:45','2024-01-02 13:49:45'),(1949,657,'action complete via WP Cron','2024-01-02 13:49:45','2024-01-02 13:49:45'),(1950,659,'action created','2024-01-02 13:49:45','2024-01-02 13:49:45'),(1951,658,'action started via WP Cron','2024-01-03 14:06:55','2024-01-03 14:06:55'),(1952,658,'action complete via WP Cron','2024-01-03 14:06:55','2024-01-03 14:06:55'),(1953,660,'action created','2024-01-03 14:06:55','2024-01-03 14:06:55'),(1954,659,'action started via WP Cron','2024-01-03 14:06:55','2024-01-03 14:06:55'),(1955,659,'action complete via WP Cron','2024-01-03 14:06:55','2024-01-03 14:06:55'),(1956,661,'action created','2024-01-03 14:06:55','2024-01-03 14:06:55'),(1957,660,'action started via WP Cron','2024-01-04 15:08:50','2024-01-04 15:08:50'),(1958,660,'action complete via WP Cron','2024-01-04 15:08:50','2024-01-04 15:08:50'),(1959,662,'action created','2024-01-04 15:08:50','2024-01-04 15:08:50'),(1960,661,'action started via WP Cron','2024-01-04 15:08:50','2024-01-04 15:08:50'),(1961,661,'action complete via WP Cron','2024-01-04 15:08:50','2024-01-04 15:08:50'),(1962,663,'action created','2024-01-04 15:08:50','2024-01-04 15:08:50'),(1963,662,'action started via WP Cron','2024-01-05 15:33:56','2024-01-05 15:33:56'),(1964,662,'action complete via WP Cron','2024-01-05 15:33:56','2024-01-05 15:33:56'),(1965,664,'action created','2024-01-05 15:33:56','2024-01-05 15:33:56'),(1966,663,'action started via WP Cron','2024-01-05 15:33:56','2024-01-05 15:33:56'),(1967,663,'action complete via WP Cron','2024-01-05 15:33:56','2024-01-05 15:33:56'),(1968,665,'action created','2024-01-05 15:33:56','2024-01-05 15:33:56'),(1969,664,'action started via WP Cron','2024-01-06 16:03:45','2024-01-06 16:03:45'),(1970,664,'action complete via WP Cron','2024-01-06 16:03:45','2024-01-06 16:03:45'),(1971,666,'action created','2024-01-06 16:03:45','2024-01-06 16:03:45'),(1972,665,'action started via WP Cron','2024-01-06 16:03:45','2024-01-06 16:03:45'),(1973,665,'action complete via WP Cron','2024-01-06 16:03:45','2024-01-06 16:03:45'),(1974,667,'action created','2024-01-06 16:03:45','2024-01-06 16:03:45'),(1975,666,'action started via WP Cron','2024-01-07 16:33:21','2024-01-07 16:33:21'),(1976,666,'action complete via WP Cron','2024-01-07 16:33:21','2024-01-07 16:33:21'),(1977,668,'action created','2024-01-07 16:33:21','2024-01-07 16:33:21'),(1978,667,'action started via WP Cron','2024-01-07 16:33:21','2024-01-07 16:33:21'),(1979,667,'action complete via WP Cron','2024-01-07 16:33:21','2024-01-07 16:33:21'),(1980,669,'action created','2024-01-07 16:33:21','2024-01-07 16:33:21'),(1981,655,'action started via WP Cron','2024-01-08 06:18:36','2024-01-08 06:18:36'),(1982,655,'action complete via WP Cron','2024-01-08 06:18:36','2024-01-08 06:18:36'),(1983,670,'action created','2024-01-08 06:18:36','2024-01-08 06:18:36'),(1984,668,'action started via WP Cron','2024-01-08 16:53:47','2024-01-08 16:53:47'),(1985,668,'action complete via WP Cron','2024-01-08 16:53:47','2024-01-08 16:53:47'),(1986,671,'action created','2024-01-08 16:53:47','2024-01-08 16:53:47'),(1987,669,'action started via WP Cron','2024-01-08 16:53:47','2024-01-08 16:53:47'),(1988,669,'action complete via WP Cron','2024-01-08 16:53:47','2024-01-08 16:53:47'),(1989,672,'action created','2024-01-08 16:53:47','2024-01-08 16:53:47'),(1990,671,'action started via WP Cron','2024-01-09 19:14:11','2024-01-09 19:14:11'),(1991,671,'action complete via WP Cron','2024-01-09 19:14:11','2024-01-09 19:14:11'),(1992,673,'action created','2024-01-09 19:14:11','2024-01-09 19:14:11'),(1993,672,'action started via WP Cron','2024-01-09 19:14:11','2024-01-09 19:14:11'),(1994,672,'action complete via WP Cron','2024-01-09 19:14:11','2024-01-09 19:14:11'),(1995,674,'action created','2024-01-09 19:14:11','2024-01-09 19:14:11'),(1996,673,'action started via WP Cron','2024-01-10 19:41:26','2024-01-10 19:41:26'),(1997,673,'action complete via WP Cron','2024-01-10 19:41:26','2024-01-10 19:41:26'),(1998,675,'action created','2024-01-10 19:41:26','2024-01-10 19:41:26'),(1999,674,'action started via WP Cron','2024-01-10 19:41:26','2024-01-10 19:41:26'),(2000,674,'action complete via WP Cron','2024-01-10 19:41:26','2024-01-10 19:41:26'),(2001,676,'action created','2024-01-10 19:41:26','2024-01-10 19:41:26'),(2002,675,'action started via WP Cron','2024-01-11 20:02:13','2024-01-11 20:02:13'),(2003,675,'action complete via WP Cron','2024-01-11 20:02:13','2024-01-11 20:02:13'),(2004,677,'action created','2024-01-11 20:02:13','2024-01-11 20:02:13'),(2005,676,'action started via WP Cron','2024-01-11 20:02:13','2024-01-11 20:02:13'),(2006,676,'action complete via WP Cron','2024-01-11 20:02:13','2024-01-11 20:02:13'),(2007,678,'action created','2024-01-11 20:02:13','2024-01-11 20:02:13'); /*!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_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_commentmeta` -- LOCK TABLES `wp_commentmeta` WRITE; /*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */; INSERT INTO `wp_commentmeta` VALUES (1,6,'verified','0'); /*!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_520_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_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_520_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_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)), KEY `woo_idx_comment_type` (`comment_type`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_comments` -- LOCK TABLES `wp_comments` WRITE; /*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */; INSERT INTO `wp_comments` VALUES (1,2523,'WooCommerce','woocommerce@wordpressdemo.subscriptionflow.com','','','2023-11-21 17:25:36','2023-11-21 17:25:36','Unpaid order cancelled - time limit reached. Order status changed from Pending payment to Cancelled.',0,'1','WooCommerce','order_note',0,0),(2,2524,'WooCommerce','woocommerce@wordpressdemo.subscriptionflow.com','','','2023-11-21 17:25:36','2023-11-21 17:25:36','Unpaid order cancelled - time limit reached. Order status changed from Pending payment to Cancelled.',0,'1','WooCommerce','order_note',0,0),(3,2525,'WooCommerce','woocommerce@wordpressdemo.subscriptionflow.com','','','2023-11-22 10:02:38','2023-11-22 10:02:38','Unpaid order cancelled - time limit reached. Order status changed from Pending payment to Cancelled.',0,'1','WooCommerce','order_note',0,0),(4,2526,'WooCommerce','woocommerce@wordpressdemo.subscriptionflow.com','','','2023-11-22 12:24:17','2023-11-22 12:24:17','Unpaid order cancelled - time limit reached. Order status changed from Pending payment to Cancelled.',0,'1','WooCommerce','order_note',0,0),(5,2527,'WooCommerce','woocommerce@wordpressdemo.subscriptionflow.com','','','2023-11-24 15:44:08','2023-11-24 15:44:08','Unpaid order cancelled - time limit reached. Order status changed from Pending payment to Cancelled.',0,'1','WooCommerce','order_note',0,0),(6,2392,'bahis siteleri sikis','EzXZ8OGo@hotmail.com','https://weissgroupinc.com/','179.43.191.18','2023-12-29 18:28:54','2023-12-29 18:28:54','yandanxvurulmus.37lJVB4HMG0H',0,'0','TheSafexInternetSearcher','review',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_520_ci, `created_at` datetime NOT NULL, PRIMARY KEY (`id`), KEY `created_at_index` (`created_at`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_e_events` -- LOCK TABLES `wp_e_events` WRITE; /*!40000 ALTER TABLE `wp_e_events` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_e_events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_e_submissions` -- DROP TABLE IF EXISTS `wp_e_submissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_e_submissions` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `type` varchar(60) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `hash_id` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL, `main_meta_id` bigint(20) unsigned NOT NULL COMMENT 'Id of main field. to represent the main meta field', `post_id` bigint(20) unsigned NOT NULL, `referer` varchar(500) COLLATE utf8mb4_unicode_520_ci NOT NULL, `referer_title` varchar(300) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `element_id` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL, `form_name` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL, `campaign_id` bigint(20) unsigned NOT NULL, `user_id` bigint(20) unsigned DEFAULT NULL, `user_ip` varchar(46) COLLATE utf8mb4_unicode_520_ci NOT NULL, `user_agent` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `actions_count` int(11) DEFAULT '0', `actions_succeeded_count` int(11) DEFAULT '0', `status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL, `is_read` tinyint(1) NOT NULL DEFAULT '0', `meta` text COLLATE utf8mb4_unicode_520_ci, `created_at_gmt` datetime NOT NULL, `updated_at_gmt` datetime NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `hash_id_unique_index` (`hash_id`), KEY `main_meta_id_index` (`main_meta_id`), KEY `hash_id_index` (`hash_id`), KEY `type_index` (`type`), KEY `post_id_index` (`post_id`), KEY `element_id_index` (`element_id`), KEY `campaign_id_index` (`campaign_id`), KEY `user_id_index` (`user_id`), KEY `user_ip_index` (`user_ip`), KEY `status_index` (`status`), KEY `is_read_index` (`is_read`), KEY `created_at_gmt_index` (`created_at_gmt`), KEY `updated_at_gmt_index` (`updated_at_gmt`), KEY `created_at_index` (`created_at`), KEY `updated_at_index` (`updated_at`), KEY `referer_index` (`referer`(191)), KEY `referer_title_index` (`referer_title`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_e_submissions` -- LOCK TABLES `wp_e_submissions` WRITE; /*!40000 ALTER TABLE `wp_e_submissions` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_e_submissions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_e_submissions_actions_log` -- DROP TABLE IF EXISTS `wp_e_submissions_actions_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_e_submissions_actions_log` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `submission_id` bigint(20) unsigned NOT NULL, `action_name` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL, `action_label` varchar(60) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL, `log` text COLLATE utf8mb4_unicode_520_ci, `created_at_gmt` datetime NOT NULL, `updated_at_gmt` datetime NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, PRIMARY KEY (`id`), KEY `submission_id_index` (`submission_id`), KEY `action_name_index` (`action_name`), KEY `status_index` (`status`), KEY `created_at_gmt_index` (`created_at_gmt`), KEY `updated_at_gmt_index` (`updated_at_gmt`), KEY `created_at_index` (`created_at`), KEY `updated_at_index` (`updated_at`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_e_submissions_actions_log` -- LOCK TABLES `wp_e_submissions_actions_log` WRITE; /*!40000 ALTER TABLE `wp_e_submissions_actions_log` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_e_submissions_actions_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_e_submissions_values` -- DROP TABLE IF EXISTS `wp_e_submissions_values`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_e_submissions_values` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `submission_id` bigint(20) unsigned NOT NULL DEFAULT '0', `key` varchar(60) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`id`), KEY `submission_id_index` (`submission_id`), KEY `key_index` (`key`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_e_submissions_values` -- LOCK TABLES `wp_e_submissions_values` WRITE; /*!40000 ALTER TABLE `wp_e_submissions_values` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_e_submissions_values` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_links` -- DROP TABLE IF EXISTS `wp_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_520_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_520_ci NOT NULL DEFAULT '', `link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_links` -- LOCK TABLES `wp_links` WRITE; /*!40000 ALTER TABLE `wp_links` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mo_sp_attributes` -- DROP TABLE IF EXISTS `wp_mo_sp_attributes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mo_sp_attributes` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `mo_sp_id` bigint(20) DEFAULT NULL, `mo_sp_attr_name` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `mo_sp_attr_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `mo_attr_type` smallint(6) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `mo_sp_id` (`mo_sp_id`), CONSTRAINT `wp_mo_sp_attributes_ibfk_1` FOREIGN KEY (`mo_sp_id`) REFERENCES `wp_mo_sp_data` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mo_sp_attributes` -- LOCK TABLES `wp_mo_sp_attributes` WRITE; /*!40000 ALTER TABLE `wp_mo_sp_attributes` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_mo_sp_attributes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mo_sp_data` -- DROP TABLE IF EXISTS `wp_mo_sp_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mo_sp_data` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `mo_idp_sp_name` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `mo_idp_sp_issuer` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `mo_idp_acs_url` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `mo_idp_cert` longtext COLLATE utf8mb4_unicode_520_ci, `mo_idp_cert_encrypt` longtext COLLATE utf8mb4_unicode_520_ci, `mo_idp_nameid_format` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `mo_idp_nameid_attr` varchar(55) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'emailAddress', `mo_idp_response_signed` smallint(6) DEFAULT NULL, `mo_idp_assertion_signed` smallint(6) DEFAULT NULL, `mo_idp_encrypted_assertion` smallint(6) DEFAULT NULL, `mo_idp_enable_group_mapping` smallint(6) DEFAULT NULL, `mo_idp_default_relayState` longtext COLLATE utf8mb4_unicode_520_ci, `mo_idp_logout_url` longtext COLLATE utf8mb4_unicode_520_ci, `mo_idp_logout_binding_type` varchar(15) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'HttpRedirect', `mo_idp_protocol_type` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, PRIMARY KEY (`id`) ) 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_mo_sp_data` -- LOCK TABLES `wp_mo_sp_data` WRITE; /*!40000 ALTER TABLE `wp_mo_sp_data` DISABLE KEYS */; INSERT INTO `wp_mo_sp_data` VALUES (1,'SubscriptionFlow','https://wpdemo.subscriptionflow.com/saml2/pfacme/metadata','https://wpdemo.subscriptionflow.com/saml2/pfacme/acs',NULL,NULL,'1.1:nameid-format:emailAddress','emailAddress',NULL,1,NULL,NULL,NULL,NULL,'HttpRedirect','SAML'); /*!40000 ALTER TABLE `wp_mo_sp_data` 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_520_ci NOT NULL DEFAULT '', `option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`), KEY `autoload` (`autoload`) ) ENGINE=InnoDB AUTO_INCREMENT=35598 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_options` -- LOCK TABLES `wp_options` WRITE; /*!40000 ALTER TABLE `wp_options` DISABLE KEYS */; INSERT INTO `wp_options` VALUES (1,'siteurl','https://wordpressdemo.subscriptionflow.com','yes'),(2,'home','https://wordpressdemo.subscriptionflow.com','yes'),(3,'blogname','SubscriptionFlow Demo','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','info@demo.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','0','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:185:{s:24:\"^wc-auth/v([1]{1})/(.*)?\";s:63:\"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]\";s:22:\"^wc-api/v([1-3]{1})/?$\";s:51:\"index.php?wc-api-version=$matches[1]&wc-api-route=/\";s:24:\"^wc-api/v([1-3]{1})(.*)?\";s:61:\"index.php?wc-api-version=$matches[1]&wc-api-route=$matches[2]\";s:7:\"shop/?$\";s:27:\"index.php?post_type=product\";s:37:\"shop/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:32:\"shop/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:24:\"shop/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=product&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:32:\"category/(.+?)/wc-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&wc-api=$matches[3]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:29:\"tag/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&wc-api=$matches[3]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:42:\"e-landing-page/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"e-landing-page/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"e-landing-page/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"e-landing-page/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"e-landing-page/([^/]+)/embed/?$\";s:47:\"index.php?e-landing-page=$matches[1]&embed=true\";s:35:\"e-landing-page/([^/]+)/trackback/?$\";s:41:\"index.php?e-landing-page=$matches[1]&tb=1\";s:43:\"e-landing-page/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&paged=$matches[2]\";s:50:\"e-landing-page/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&cpage=$matches[2]\";s:40:\"e-landing-page/([^/]+)/wc-api(/(.*))?/?$\";s:55:\"index.php?e-landing-page=$matches[1]&wc-api=$matches[3]\";s:46:\"e-landing-page/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:57:\"e-landing-page/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:39:\"e-landing-page/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?e-landing-page=$matches[1]&page=$matches[2]\";s:31:\"e-landing-page/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"e-landing-page/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"e-landing-page/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"e-landing-page/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:55:\"product-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:50:\"product-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:31:\"product-category/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:43:\"product-category/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:25:\"product-category/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:52:\"product-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:47:\"product-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:28:\"product-tag/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:40:\"product-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:22:\"product-tag/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:35:\"product/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"product/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"product/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"product/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"product/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:28:\"product/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:48:\"product/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:43:\"product/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:36:\"product/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:43:\"product/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:33:\"product/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:39:\"product/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"product/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:24:\"product/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"product/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"product/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"product/[^/]+/([^/]+)/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:39:\"index.php?&page_id=18&cpage=$matches[1]\";s:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:19:\"wishlist(/(.*))?/?$\";s:31:\"index.php?&wishlist=$matches[2]\";s:24:\"subscriptions(/(.*))?/?$\";s:36:\"index.php?&subscriptions=$matches[2]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:26:\"comments/wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:29:\"search/(.+)/wc-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&wc-api=$matches[3]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:32:\"author/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&wc-api=$matches[3]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc-api=$matches[5]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:41:\"([0-9]{4})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc-api=$matches[4]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:28:\"([0-9]{4})/wc-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&wc-api=$matches[3]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:25:\"(.?.+?)/wc-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&wc-api=$matches[3]\";s:28:\"(.?.+?)/order-pay(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&order-pay=$matches[3]\";s:33:\"(.?.+?)/order-received(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&order-received=$matches[3]\";s:25:\"(.?.+?)/orders(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&orders=$matches[3]\";s:29:\"(.?.+?)/view-order(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&view-order=$matches[3]\";s:28:\"(.?.+?)/downloads(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&downloads=$matches[3]\";s:31:\"(.?.+?)/edit-account(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-account=$matches[3]\";s:31:\"(.?.+?)/edit-address(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-address=$matches[3]\";s:34:\"(.?.+?)/payment-methods(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&payment-methods=$matches[3]\";s:32:\"(.?.+?)/lost-password(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&lost-password=$matches[3]\";s:34:\"(.?.+?)/customer-logout(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&customer-logout=$matches[3]\";s:37:\"(.?.+?)/add-payment-method(/(.*))?/?$\";s:61:\"index.php?pagename=$matches[1]&add-payment-method=$matches[3]\";s:40:\"(.?.+?)/delete-payment-method(/(.*))?/?$\";s:64:\"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]\";s:45:\"(.?.+?)/set-default-payment-method(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&set-default-payment-method=$matches[3]\";s:27:\"(.?.+?)/wishlist(/(.*))?/?$\";s:51:\"index.php?pagename=$matches[1]&wishlist=$matches[3]\";s:32:\"(.?.+?)/subscriptions(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&subscriptions=$matches[3]\";s:31:\".?.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:25:\"([^/]+)/wc-api(/(.*))?/?$\";s:45:\"index.php?name=$matches[1]&wc-api=$matches[3]\";s:31:\"[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\"[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:17:{i:0;s:19:\"akismet/akismet.php\";i:1;s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:2;s:33:\"classic-editor/classic-editor.php\";i:3;s:36:\"contact-form-7/wp-contact-form-7.php\";i:4;s:73:\"country-phone-field-contact-form-7/country-phone-field-contact-form-7.php\";i:5;s:31:\"elementor-pro/elementor-pro.php\";i:6;s:23:\"elementor/elementor.php\";i:7;s:9:\"hello.php\";i:8;s:43:\"miniorange-wp-as-saml-idp/MoIDPSettings.php\";i:9;s:37:\"royal-elementor-addons/wpr-addons.php\";i:10;s:50:\"wc-sf-integration/class-wc-sf-integration-demo.php\";i:11;s:29:\"woo-paystack/woo-paystack.php\";i:12;s:27:\"woocommerce/woocommerce.php\";i:13;s:53:\"wp-child-theme-generator/wp-child-theme-generator.php\";i:14;s:39:\"wp-file-manager/file_folder_manager.php\";i:15;s:29:\"wp-mail-smtp/wp_mail_smtp.php\";i:16;s:33:\"wpcf7-redirect/wpcf7-redirect.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','a:5:{i:0;s:85:\"/var/www/html/wordpressdemo/wp-content/themes/royal-elementor-kit-child/functions.php\";i:1;s:81:\"/var/www/html/wordpressdemo/wp-content/themes/royal-elementor-kit-child/style.css\";i:2;s:97:\"/var/www/html/wordpressdemo/wp-content/plugins/wc-sf-integration/class-wc-sf-integration-demo.php\";i:3;s:66:\"/var/www/html/wordpressdemo/wp-content/plugins/akismet/akismet.php\";i:4;s:87:\"/var/www/html/wordpressdemo/wp-content/plugins/wc-sf-integration/class-wc-sf-helper.php\";}','no'),(40,'template','royal-elementor-kit','yes'),(41,'stylesheet','royal-elementor-kit-child','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','55853','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','0','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:1:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','18','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','0','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','1701603888','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:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:114:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}s: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;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:92:{s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"edit_theme_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}}','yes'),(101,'fresh_site','0','yes'),(102,'user_count','18','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:21:{i:1705044604;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:1705045579;a:1:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1705045693;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:1705046647;a:1:{s:29:\"wc_admin_unsnooze_admin_notes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1705046887;a:1:{s:33:\"wc_admin_process_orders_milestone\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1705046941;a:1:{s:32:\"woocommerce_cancel_unpaid_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1705057197;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:1705063579;a:1:{s:20:\"jetpack_v2_heartbeat\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1705063590;a:2:{s:33:\"woocommerce_cleanup_personal_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:30:\"woocommerce_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:1705067293;a:5:{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: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;}}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;}}}i:1705067301;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:1705067302;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:1705068238;a:1:{s:14:\"wc_admin_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1705074380;a:2:{s:24:\"woocommerce_cleanup_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:31:\"woocommerce_cleanup_rate_limits\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1705085180;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1705104000;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1705129106;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:1705442777;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:1705495640;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:11:\"fifteendays\";s:4:\"args\";a:0:{}s:8:\"interval\";i:1296000;}}}i:1705499293;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','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_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(121,'recovery_keys','a:0:{}','yes'),(124,'theme_mods_twentytwentythree','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1670335309;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'),(127,'https_detection_errors','a:0:{}','yes'),(153,'recently_activated','a:1:{s:30:\"contact-form-7-skins/index.php\";i:1701349041;}','yes'),(158,'finished_updating_comment_type','1','yes'),(169,'current_theme','Royal Elementor Kit Child','yes'),(170,'theme_mods_royal-elementor-kit','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1671621866;s:4:\"data\";a:1:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}}}}','yes'),(171,'theme_switched','','yes'),(172,'rek_activation_time','1670335309','yes'),(178,'elementor_active_kit','5','yes'),(179,'elementor_font_display','swap','yes'),(182,'elementor_version','3.10.1','yes'),(183,'elementor_install_history','a:3:{s:5:\"3.8.1\";i:1670335339;s:5:\"3.9.0\";i:1670412633;s:6:\"3.10.1\";i:1675678385;}','yes'),(184,'elementor_events_db_version','1.0.0','no'),(187,'fs_active_plugins','O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:31:\"royal-elementor-addons/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"2.5.12\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1697719558;s:11:\"plugin_path\";s:37:\"royal-elementor-addons/wpr-addons.php\";}}s:7:\"abspath\";s:28:\"/var/www/html/wordpressdemo/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:37:\"royal-elementor-addons/wpr-addons.php\";s:8:\"sdk_path\";s:31:\"royal-elementor-addons/freemius\";s:7:\"version\";s:6:\"2.5.12\";s:13:\"in_activation\";b:0;s:9:\"timestamp\";i:1697719558;}}','yes'),(188,'fs_debug_mode','','yes'),(189,'fs_accounts','a:7:{s:21:\"id_slug_type_path_map\";a:2:{i:8416;a:3:{s:4:\"slug\";s:10:\"wpr-addons\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:37:\"royal-elementor-addons/wpr-addons.php\";}i:9546;a:3:{s:4:\"slug\";s:14:\"wpcf7-redirect\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:33:\"wpcf7-redirect/wpcf7-redirect.php\";}}s:11:\"plugin_data\";a:2:{s:10:\"wpr-addons\";a:18:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:37:\"royal-elementor-addons/wpr-addons.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1670335342;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";s:5:\"2.4.3\";s:11:\"sdk_version\";s:6:\"2.5.12\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:6:\"1.3.62\";s:14:\"plugin_version\";s:6:\"1.3.80\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:34:\"wordpressdemo.subscriptionflow.com\";s:9:\"server_ip\";s:12:\"110.39.3.246\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1670335342;s:7:\"version\";s:6:\"1.3.56\";}s:15:\"prev_is_premium\";b:0;s:30:\"affiliate_program_notice_shown\";i:1673338399;s:18:\"sticky_optin_added\";b:1;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1675322686;s:7:\"version\";s:6:\"1.3.62\";}}s:14:\"wpcf7-redirect\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:33:\"wpcf7-redirect/wpcf7-redirect.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1697723773;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:1;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:6:\"2.5.12\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";N;s:14:\"plugin_version\";s:5:\"3.0.1\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";N;s:4:\"host\";s:34:\"wordpressdemo.subscriptionflow.com\";s:9:\"server_ip\";s:10:\"10.154.0.4\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1697723773;s:7:\"version\";s:5:\"3.0.1\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1697723778;s:7:\"version\";s:5:\"3.0.1\";}}}s:13:\"file_slug_map\";a:2:{s:37:\"royal-elementor-addons/wpr-addons.php\";s:10:\"wpr-addons\";s:33:\"wpcf7-redirect/wpcf7-redirect.php\";s:14:\"wpcf7-redirect\";}s:7:\"plugins\";a:2:{s:10:\"wpr-addons\";O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:22:\"Royal Elementor Addons\";s:4:\"slug\";s:10:\"wpr-addons\";s:12:\"premium_slug\";s:14:\"wpr-addons-pro\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";s:8:\"selected\";s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:37:\"royal-elementor-addons/wpr-addons.php\";s:7:\"version\";s:6:\"1.3.80\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_a0b21b234a7c9581a555b9ee9f28a\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"8416\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:14:\"wpcf7-redirect\";O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:30:\"Redirection for Contact Form 7\";s:4:\"slug\";s:14:\"wpcf7-redirect\";s:12:\"premium_slug\";s:22:\"wpcf7-redirect-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:33:\"wpcf7-redirect/wpcf7-redirect.php\";s:7:\"version\";s:5:\"3.0.1\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";s:4:\"9566\";s:17:\"bundle_public_key\";s:32:\"pk_93c540ee75ee6e1f565670f760a12\";s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_f6edcea690f1f0ec55e21eff1fd4a\";s:10:\"secret_key\";N;s:2:\"id\";i:9546;s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;}}s:9:\"unique_id\";s:32:\"e5d538940933109c78d7d9f1e0dc37d9\";s:13:\"admin_notices\";a:1:{s:10:\"wpr-addons\";a:0:{}}s:6:\"addons\";a:1:{i:9546;a:18:{i:0;O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";s:4:\"9546\";s:5:\"title\";s:25:\"Actions conditional logic\";s:4:\"slug\";s:24:\"wpcf7r-conditional-logic\";s:12:\"premium_slug\";s:24:\"wpcf7r-conditional-logic\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";N;s:19:\"is_wp_org_compliant\";b:0;s:22:\"premium_releases_count\";i:2;s:4:\"file\";N;s:7:\"version\";N;s:11:\"auto_update\";N;s:4:\"info\";O:14:\"FS_Plugin_Info\":13:{s:9:\"plugin_id\";s:4:\"9547\";s:11:\"description\";s:297:\"Conditional logic of actions extension adds powerful conditional rules management to your submission actions.\nSet If/Or rules for each action according to user input.\nYou will be able to control each of the available actions and define different scenarios according to the data filled by the user.\";s:17:\"short_description\";s:109:\"Conditional logic of actions extension adds powerful conditional rules management to your submission actions.\";s:10:\"banner_url\";s:67:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9547/banner.jpg\";s:15:\"card_banner_url\";s:73:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9547/card_banner.jpeg\";s:15:\"selling_point_0\";s:69:\"Redirect to different thank you pages with the basic redirect action.\";s:15:\"selling_point_1\";s:50:\"Sell different products with the PayPal extension.\";s:15:\"selling_point_2\";s:83:\"Manage your conversion pixels by user selections (use the free fire script action).\";s:11:\"screenshots\";O:8:\"stdClass\":2:{s:12:\"screenshot_0\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9547/screenshots/0.jpeg\";s:12:\"screenshot_1\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9547/screenshots/1.jpeg\";}s:2:\"id\";s:4:\"2530\";s:7:\"updated\";s:19:\"2021-12-17 09:20:19\";s:7:\"created\";s:19:\"2021-12-17 07:05:46\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_7b26566eaa100fecced4da79f1b89\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"9547\";s:7:\"updated\";s:19:\"2023-12-28 19:42:32\";s:7:\"created\";s:19:\"2021-12-17 06:51:50\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}i:1;O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";s:4:\"9546\";s:5:\"title\";s:16:\"API Integrations\";s:4:\"slug\";s:10:\"wpcf7r-api\";s:12:\"premium_slug\";s:10:\"wpcf7r-api\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";N;s:19:\"is_wp_org_compliant\";b:0;s:22:\"premium_releases_count\";i:3;s:4:\"file\";N;s:7:\"version\";N;s:11:\"auto_update\";N;s:4:\"info\";O:14:\"FS_Plugin_Info\":13:{s:9:\"plugin_id\";s:4:\"9549\";s:11:\"description\";s:424:\"3rd party integration for Contact Form 7 is easy with contact-form-7 to API.\n\nUse the API results with custom JavaScript/Send the data using www-form-urlencoded.\nAlongside conditional actions logic extension define different set of registration rules.\nUse any contact form 7 tag/multiple tags.\nManipulate the user input with custom functions (MD5/Urlencode/Base64_encode/Utf8 Decode).\nTest your settings and view debug logs.\";s:17:\"short_description\";s:58:\"API extension allows you to Send your Leads to remote API.\";s:10:\"banner_url\";s:68:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9549/banner.jpeg\";s:15:\"card_banner_url\";s:73:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9549/card_banner.jpeg\";s:15:\"selling_point_0\";s:47:\"Supports POST/GET/DELETE/PATCH PARAMS/JSON/XML.\";s:15:\"selling_point_1\";s:72:\"Map your custom form fields according to your API provider instructions.\";s:15:\"selling_point_2\";s:24:\"Set custom HTTP HEADERS.\";s:11:\"screenshots\";O:8:\"stdClass\":3:{s:12:\"screenshot_0\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9549/screenshots/0.jpeg\";s:12:\"screenshot_1\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9549/screenshots/1.jpeg\";s:12:\"screenshot_2\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9549/screenshots/2.jpeg\";}s:2:\"id\";s:4:\"2531\";s:7:\"updated\";s:19:\"2023-12-21 19:03:23\";s:7:\"created\";s:19:\"2021-12-17 10:07:59\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_1717795231fbbf807b4db7b2c127d\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"9549\";s:7:\"updated\";s:19:\"2023-12-30 02:11:11\";s:7:\"created\";s:19:\"2021-12-17 09:40:43\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}i:2;O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";s:4:\"9546\";s:5:\"title\";s:15:\"Thank You Popup\";s:4:\"slug\";s:12:\"wpcf7r-popup\";s:12:\"premium_slug\";s:12:\"wpcf7r-popup\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";N;s:19:\"is_wp_org_compliant\";b:0;s:22:\"premium_releases_count\";i:1;s:4:\"file\";N;s:7:\"version\";N;s:11:\"auto_update\";N;s:4:\"info\";O:14:\"FS_Plugin_Info\":13:{s:9:\"plugin_id\";s:4:\"9551\";s:11:\"description\";s:121:\"Contact Form 7 Thank You Popup extension adds the ability to thank your users with a noticeable designed thank-you popup.\";s:17:\"short_description\";s:121:\"Contact Form 7 Thank You Popup extension adds the ability to thank your users with a noticeable designed thank-you popup.\";s:10:\"banner_url\";s:67:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9551/banner.png\";s:15:\"card_banner_url\";s:72:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9551/card_banner.png\";s:15:\"selling_point_0\";s:37:\"Create a popup for any of your forms.\";s:15:\"selling_point_1\";s:86:\"Easy design tools allows you to match the colors and styles to your own website style.\";s:15:\"selling_point_2\";s:39:\"You can create your own popup template!\";s:11:\"screenshots\";O:8:\"stdClass\":2:{s:12:\"screenshot_0\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9551/screenshots/0.jpeg\";s:12:\"screenshot_1\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9551/screenshots/1.jpeg\";}s:2:\"id\";s:4:\"2532\";s:7:\"updated\";N;s:7:\"created\";s:19:\"2021-12-17 10:31:52\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_b496c98190df71609959aae524a62\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"9551\";s:7:\"updated\";s:19:\"2023-12-29 10:02:22\";s:7:\"created\";s:19:\"2021-12-17 10:14:18\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}i:3;O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";s:4:\"9546\";s:5:\"title\";s:11:\"PDF Creator\";s:4:\"slug\";s:17:\"wpcf7r-create-pdf\";s:12:\"premium_slug\";s:17:\"wpcf7r-create-pdf\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";N;s:19:\"is_wp_org_compliant\";b:0;s:22:\"premium_releases_count\";i:7;s:4:\"file\";N;s:7:\"version\";N;s:11:\"auto_update\";N;s:4:\"info\";O:14:\"FS_Plugin_Info\":13:{s:9:\"plugin_id\";s:4:\"9552\";s:11:\"description\";s:27:\"Create PDF After Submission\";s:17:\"short_description\";s:92:\"Create PDF extension adds the option to create and send PDF using the submitted form fields.\";s:10:\"banner_url\";s:67:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9552/banner.png\";s:15:\"card_banner_url\";s:72:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9552/card_banner.png\";s:15:\"selling_point_0\";s:26:\"Set PDF header and footer.\";s:15:\"selling_point_1\";s:27:\"Set a background watermark.\";s:15:\"selling_point_2\";s:46:\"Separate pages and set padding and page sizes.\";s:11:\"screenshots\";O:8:\"stdClass\":2:{s:12:\"screenshot_0\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9552/screenshots/0.jpeg\";s:12:\"screenshot_1\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9552/screenshots/1.jpeg\";}s:2:\"id\";s:4:\"2533\";s:7:\"updated\";N;s:7:\"created\";s:19:\"2021-12-17 11:03:12\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_116f452f6f2a22d22516d54cd06d8\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"9552\";s:7:\"updated\";s:19:\"2023-12-23 10:16:41\";s:7:\"created\";s:19:\"2021-12-17 10:38:05\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}i:4;O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";s:4:\"9546\";s:5:\"title\";s:18:\"Stripe Integration\";s:4:\"slug\";s:13:\"wpcf7r-stripe\";s:12:\"premium_slug\";s:13:\"wpcf7r-stripe\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";N;s:19:\"is_wp_org_compliant\";b:0;s:22:\"premium_releases_count\";i:1;s:4:\"file\";N;s:7:\"version\";N;s:11:\"auto_update\";N;s:4:\"info\";O:14:\"FS_Plugin_Info\":13:{s:9:\"plugin_id\";s:4:\"9553\";s:11:\"description\";N;s:17:\"short_description\";s:90:\"Collect Payments with Stripe extension will allow you to collect payments from your users.\";s:10:\"banner_url\";s:67:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9553/banner.png\";s:15:\"card_banner_url\";s:72:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9553/card_banner.png\";s:15:\"selling_point_0\";s:29:\"Define your product settings.\";s:15:\"selling_point_1\";s:25:\"Map optional user fields.\";s:15:\"selling_point_2\";s:21:\"Add custom meta-data.\";s:11:\"screenshots\";O:8:\"stdClass\":3:{s:12:\"screenshot_0\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9553/screenshots/0.jpeg\";s:12:\"screenshot_1\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9553/screenshots/1.jpeg\";s:12:\"screenshot_2\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9553/screenshots/2.jpeg\";}s:2:\"id\";s:4:\"2534\";s:7:\"updated\";N;s:7:\"created\";s:19:\"2021-12-17 11:37:04\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_84905c0f9166b5f0282d3031cd353\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"9553\";s:7:\"updated\";s:19:\"2023-12-28 11:21:08\";s:7:\"created\";s:19:\"2021-12-17 11:08:26\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}i:5;O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";s:4:\"9546\";s:5:\"title\";s:19:\"HubSpot Integration\";s:4:\"slug\";s:14:\"wpcf7r-hubspot\";s:12:\"premium_slug\";s:14:\"wpcf7r-hubspot\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";N;s:19:\"is_wp_org_compliant\";b:0;s:22:\"premium_releases_count\";i:4;s:4:\"file\";N;s:7:\"version\";N;s:11:\"auto_update\";N;s:4:\"info\";O:14:\"FS_Plugin_Info\":13:{s:9:\"plugin_id\";s:4:\"9554\";s:11:\"description\";N;s:17:\"short_description\";s:108:\"Hubspot Integration extensions adds the ability to send form submissions from Contact Form 7 to HubSpot CRM.\";s:10:\"banner_url\";s:67:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9554/banner.png\";s:15:\"card_banner_url\";s:72:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9554/card_banner.png\";s:15:\"selling_point_0\";s:55:\"Get a list of available entities to update on your CRM.\";s:15:\"selling_point_1\";s:42:\"Map your form fields with your CRM fields.\";s:15:\"selling_point_2\";N;s:11:\"screenshots\";O:8:\"stdClass\":1:{s:12:\"screenshot_0\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9554/screenshots/0.jpeg\";}s:2:\"id\";s:4:\"2535\";s:7:\"updated\";N;s:7:\"created\";s:19:\"2021-12-17 12:06:30\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_07a13955ff7fbbd212e4c200a9540\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"9554\";s:7:\"updated\";s:19:\"2023-12-23 10:09:28\";s:7:\"created\";s:19:\"2021-12-17 11:42:41\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}i:6;O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";s:4:\"9546\";s:5:\"title\";s:22:\"Salesforce Integration\";s:4:\"slug\";s:17:\"wpcf7r-salesforce\";s:12:\"premium_slug\";s:17:\"wpcf7r-salesforce\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";N;s:19:\"is_wp_org_compliant\";b:0;s:22:\"premium_releases_count\";i:5;s:4:\"file\";N;s:7:\"version\";N;s:11:\"auto_update\";N;s:4:\"info\";O:14:\"FS_Plugin_Info\":13:{s:9:\"plugin_id\";s:4:\"9555\";s:11:\"description\";s:132:\"Contact Form 7 to Salesforce Integration extensions adds the ability to send submission forms from Contact Form 7 to Salesforce CRM.\";s:17:\"short_description\";s:51:\"Integrate your contact form 7 forms with Salesforce\";s:10:\"banner_url\";s:67:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9555/banner.png\";s:15:\"card_banner_url\";s:72:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9555/card_banner.png\";s:15:\"selling_point_0\";s:62:\"Select from a list of available objects to update on your CRM.\";s:15:\"selling_point_1\";s:30:\"Update default/custom objects.\";s:15:\"selling_point_2\";s:42:\"Map your form fields with your CRM fields.\";s:11:\"screenshots\";O:8:\"stdClass\":1:{s:12:\"screenshot_0\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9555/screenshots/0.jpeg\";}s:2:\"id\";s:4:\"2537\";s:7:\"updated\";N;s:7:\"created\";s:19:\"2021-12-17 16:39:25\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_33a94c674259ac5addbd61f1bcb69\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"9555\";s:7:\"updated\";s:19:\"2023-12-23 10:10:48\";s:7:\"created\";s:19:\"2021-12-17 12:08:23\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}i:7;O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";s:4:\"9546\";s:5:\"title\";s:21:\"Front End Create Post\";s:4:\"slug\";s:18:\"wpcf7r-create-post\";s:12:\"premium_slug\";s:18:\"wpcf7r-create-post\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";N;s:19:\"is_wp_org_compliant\";b:0;s:22:\"premium_releases_count\";i:1;s:4:\"file\";N;s:7:\"version\";N;s:11:\"auto_update\";N;s:4:\"info\";O:14:\"FS_Plugin_Info\":13:{s:9:\"plugin_id\";s:4:\"9556\";s:11:\"description\";s:119:\"Allow users to publish blog-posts.\nCreate Woo-commerce coupons.\nCreate support tickets.\nInsert new Woo-commerce orders.\";s:17:\"short_description\";s:114:\"Frontend Publish Post extension adds the ability to allow your users to publish posts from your website front-end.\";s:10:\"banner_url\";s:67:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9556/banner.png\";s:15:\"card_banner_url\";s:72:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9556/card_banner.png\";s:15:\"selling_point_0\";s:84:\"Select which post type to create – custom post types and Taxonomies are supported.\";s:15:\"selling_point_1\";s:21:\"Map custom meta keys.\";s:15:\"selling_point_2\";s:103:\"Assign post to specific category/taxonomy or let the users choose category/taxonomy from any for field.\";s:11:\"screenshots\";O:8:\"stdClass\":2:{s:12:\"screenshot_0\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9556/screenshots/0.jpeg\";s:12:\"screenshot_1\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9556/screenshots/1.jpeg\";}s:2:\"id\";s:4:\"2538\";s:7:\"updated\";N;s:7:\"created\";s:19:\"2021-12-17 17:00:49\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_71c2812495ff719dd3f5c59d8160f\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"9556\";s:7:\"updated\";s:19:\"2023-12-10 09:00:46\";s:7:\"created\";s:19:\"2021-12-17 16:41:29\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}i:8;O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";s:4:\"9546\";s:5:\"title\";s:18:\"Custom Validations\";s:4:\"slug\";s:20:\"wpcf7r-custom-errors\";s:12:\"premium_slug\";s:20:\"wpcf7r-custom-errors\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";N;s:19:\"is_wp_org_compliant\";b:0;s:22:\"premium_releases_count\";i:2;s:4:\"file\";N;s:7:\"version\";N;s:11:\"auto_update\";N;s:4:\"info\";O:14:\"FS_Plugin_Info\":13:{s:9:\"plugin_id\";s:4:\"9557\";s:11:\"description\";N;s:17:\"short_description\";s:84:\"Custom Validations extension adds the ability to manage your form fields validation.\";s:10:\"banner_url\";s:67:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9557/banner.png\";s:15:\"card_banner_url\";s:72:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9557/card_banner.png\";s:15:\"selling_point_0\";s:57:\"Set custom validation rules for each of your form fields.\";s:15:\"selling_point_1\";s:48:\"Set custom error messages for individual fields.\";s:15:\"selling_point_2\";s:62:\"Set any validation rule/s to any of your contact form 7 forms.\";s:11:\"screenshots\";O:8:\"stdClass\":1:{s:12:\"screenshot_0\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9557/screenshots/0.jpeg\";}s:2:\"id\";s:4:\"2539\";s:7:\"updated\";N;s:7:\"created\";s:19:\"2021-12-17 18:19:33\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_cd176f7d3a819754da960c28302c8\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"9557\";s:7:\"updated\";s:19:\"2023-12-23 11:41:10\";s:7:\"created\";s:19:\"2021-12-17 17:02:43\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}i:9;O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";s:4:\"9546\";s:5:\"title\";s:22:\"Mail-chimp Integration\";s:4:\"slug\";s:16:\"wpcf7r-mailchimp\";s:12:\"premium_slug\";s:16:\"wpcf7r-mailchimp\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";N;s:19:\"is_wp_org_compliant\";b:0;s:22:\"premium_releases_count\";i:2;s:4:\"file\";N;s:7:\"version\";N;s:11:\"auto_update\";N;s:4:\"info\";O:14:\"FS_Plugin_Info\":13:{s:9:\"plugin_id\";s:4:\"9559\";s:11:\"description\";N;s:17:\"short_description\";s:116:\"Subscribe Users To Mail-chimp extension adds the ability to register submitted forms to any of your Mail-chimp list.\";s:10:\"banner_url\";s:67:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9559/banner.png\";s:15:\"card_banner_url\";s:72:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9559/card_banner.png\";s:15:\"selling_point_0\";s:22:\"Manage each form list.\";s:15:\"selling_point_1\";s:34:\"Map your custom Mail-chimp fields.\";s:15:\"selling_point_2\";s:22:\"Control double Opt-In.\";s:11:\"screenshots\";O:8:\"stdClass\":1:{s:12:\"screenshot_0\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9559/screenshots/0.jpeg\";}s:2:\"id\";s:4:\"2540\";s:7:\"updated\";N;s:7:\"created\";s:19:\"2021-12-17 19:43:57\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_4aa97db128c81596b751fc80e6584\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"9559\";s:7:\"updated\";s:19:\"2023-12-23 11:53:18\";s:7:\"created\";s:19:\"2021-12-17 18:27:19\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}i:10;O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";s:4:\"9546\";s:5:\"title\";s:18:\"Custom Login Forms\";s:4:\"slug\";s:12:\"wpcf7r-login\";s:12:\"premium_slug\";s:12:\"wpcf7r-login\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";N;s:19:\"is_wp_org_compliant\";b:0;s:22:\"premium_releases_count\";i:4;s:4:\"file\";N;s:7:\"version\";N;s:11:\"auto_update\";N;s:4:\"info\";O:14:\"FS_Plugin_Info\":13:{s:9:\"plugin_id\";s:4:\"9560\";s:11:\"description\";N;s:17:\"short_description\";s:96:\"Custom Login Forms extension will allow you to create custom login forms for your website users.\";s:10:\"banner_url\";s:67:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9560/banner.png\";s:15:\"card_banner_url\";s:72:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9560/card_banner.png\";s:15:\"selling_point_0\";s:28:\"Define the user login field.\";s:15:\"selling_point_1\";s:31:\"Define the user password field.\";s:15:\"selling_point_2\";s:33:\"Add your general failure message.\";s:11:\"screenshots\";O:8:\"stdClass\":1:{s:12:\"screenshot_0\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9560/screenshots/0.jpeg\";}s:2:\"id\";s:4:\"2541\";s:7:\"updated\";N;s:7:\"created\";s:19:\"2021-12-17 19:55:35\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_0d66cb30ec55c7f23e45cc41c3e43\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"9560\";s:7:\"updated\";s:19:\"2023-12-08 15:55:54\";s:7:\"created\";s:19:\"2021-12-17 19:45:13\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}i:11;O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";s:4:\"9546\";s:5:\"title\";s:25:\"Custom Registration Forms\";s:4:\"slug\";s:15:\"wpcf7r-register\";s:12:\"premium_slug\";s:15:\"wpcf7r-register\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";N;s:19:\"is_wp_org_compliant\";b:0;s:22:\"premium_releases_count\";i:2;s:4:\"file\";N;s:7:\"version\";N;s:11:\"auto_update\";N;s:4:\"info\";O:14:\"FS_Plugin_Info\":13:{s:9:\"plugin_id\";s:4:\"9564\";s:11:\"description\";s:441:\"Define password and password validation fields or generate auto passwords.\nSend new user email notifications with your custom template.\nOptionally auto login the user after completed registration.\nDefine the registered user role.\nAlongside conditional actions logic extension define different set of registration rules.\nMap custom user meta fields that will be added to the user on your admin panel.\nUse any contact form 7 tag/multiple tags.\";s:17:\"short_description\";s:93:\"Custom Registration Forms extension adds the ability to create custom user registration form.\";s:10:\"banner_url\";s:67:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9564/banner.png\";s:15:\"card_banner_url\";s:72:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9564/card_banner.png\";s:15:\"selling_point_0\";s:49:\"Easily create multiple custom registration Forms.\";s:15:\"selling_point_1\";s:57:\"Map basic user fields and/or create new user meta fields.\";s:15:\"selling_point_2\";s:74:\"Define password and password validation fields or generate auto passwords.\";s:11:\"screenshots\";O:8:\"stdClass\":2:{s:12:\"screenshot_0\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9564/screenshots/0.jpeg\";s:12:\"screenshot_1\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9564/screenshots/1.jpeg\";}s:2:\"id\";s:4:\"2543\";s:7:\"updated\";N;s:7:\"created\";s:19:\"2021-12-18 07:36:31\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_e1418dc8f85eaee980271a67e446e\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"9564\";s:7:\"updated\";s:19:\"2023-11-16 00:42:52\";s:7:\"created\";s:19:\"2021-12-18 07:20:55\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}i:12;O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";s:4:\"9546\";s:5:\"title\";s:18:\"Paypal integration\";s:4:\"slug\";s:13:\"wpcf7r-paypal\";s:12:\"premium_slug\";s:13:\"wpcf7r-paypal\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";N;s:19:\"is_wp_org_compliant\";b:0;s:22:\"premium_releases_count\";i:1;s:4:\"file\";N;s:7:\"version\";N;s:11:\"auto_update\";N;s:4:\"info\";O:14:\"FS_Plugin_Info\":13:{s:9:\"plugin_id\";s:4:\"9565\";s:11:\"description\";s:467:\"Unlimited forms.\nDefine your product settings.\nMap optional user fields (addresses/names/phone numbers etc.).\nDefine return and cancel url.\nSelect the interface language.\nSelect the payment currency.\nSelect the payment action (Sale/Authorize)\nUse any available contact form 7 shortcode to define the product details/quantities and more.\nUse conditional actions logic to sell different products.\nUse sandbox/live account.\nOpen PayPal on a new window/redirect the user.\";s:17:\"short_description\";s:80:\"Redirect to PayPal extension will allow you to collect payments from your users.\";s:10:\"banner_url\";s:67:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9565/banner.png\";s:15:\"card_banner_url\";s:72:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9565/card_banner.png\";s:15:\"selling_point_0\";s:54:\"Sell any product you like with an easy and fast setup.\";s:15:\"selling_point_1\";s:62:\"Map optional user fields (addresses/names/phone numbers etc.).\";s:15:\"selling_point_2\";s:29:\"Define return and cancel url.\";s:11:\"screenshots\";O:8:\"stdClass\":3:{s:12:\"screenshot_0\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9565/screenshots/0.jpeg\";s:12:\"screenshot_1\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9565/screenshots/1.jpeg\";s:12:\"screenshot_2\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9565/screenshots/2.jpeg\";}s:2:\"id\";s:4:\"2544\";s:7:\"updated\";N;s:7:\"created\";s:19:\"2021-12-18 07:52:29\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_56f0e90cd42f5de7ebe7c1e5f2bd3\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"9565\";s:7:\"updated\";s:19:\"2023-12-22 17:58:11\";s:7:\"created\";s:19:\"2021-12-18 07:38:12\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}i:13;O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";s:4:\"9546\";s:5:\"title\";s:15:\"Sms with twilio\";s:4:\"slug\";s:14:\"wpcf7r-twillio\";s:12:\"premium_slug\";s:22:\"wpcf7r-twillio-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";N;s:19:\"is_wp_org_compliant\";b:0;s:22:\"premium_releases_count\";i:1;s:4:\"file\";N;s:7:\"version\";N;s:11:\"auto_update\";N;s:4:\"info\";O:14:\"FS_Plugin_Info\":13:{s:9:\"plugin_id\";s:4:\"9592\";s:11:\"description\";N;s:17:\"short_description\";s:103:\"Sms with twilio allows you to send sms notifications to your users/yourself about new form submissions.\";s:10:\"banner_url\";s:68:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9592/banner.jpeg\";s:15:\"card_banner_url\";s:73:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9592/card_banner.jpeg\";s:15:\"selling_point_0\";s:45:\"Get notifications about new form submissions.\";s:15:\"selling_point_1\";s:36:\"Send success messages to your users.\";s:15:\"selling_point_2\";s:38:\"Send information to your users via SMS\";s:11:\"screenshots\";O:8:\"stdClass\":1:{s:12:\"screenshot_0\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9592/screenshots/0.jpeg\";}s:2:\"id\";s:4:\"2557\";s:7:\"updated\";s:19:\"2023-12-21 19:12:00\";s:7:\"created\";s:19:\"2021-12-25 15:43:36\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_077760f2a7ad36b614bf7bdfcf2bb\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"9592\";s:7:\"updated\";s:19:\"2023-12-21 19:12:27\";s:7:\"created\";s:19:\"2021-12-25 15:11:18\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}i:14;O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";s:4:\"9546\";s:5:\"title\";s:18:\"Send slack message\";s:4:\"slug\";s:12:\"wpcf7r-slack\";s:12:\"premium_slug\";s:20:\"wpcf7r-slack-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";N;s:19:\"is_wp_org_compliant\";b:0;s:22:\"premium_releases_count\";i:1;s:4:\"file\";N;s:7:\"version\";N;s:11:\"auto_update\";N;s:4:\"info\";O:14:\"FS_Plugin_Info\":13:{s:9:\"plugin_id\";s:4:\"9824\";s:11:\"description\";s:56:\"Send a message to your slack channel on every submission\";s:17:\"short_description\";N;s:10:\"banner_url\";s:68:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9824/banner.jpeg\";s:15:\"card_banner_url\";s:73:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9824/card_banner.jpeg\";s:15:\"selling_point_0\";s:56:\"Send a message to your slack channel on every submission\";s:15:\"selling_point_1\";N;s:15:\"selling_point_2\";N;s:11:\"screenshots\";O:8:\"stdClass\":1:{s:12:\"screenshot_0\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9824/screenshots/0.jpeg\";}s:2:\"id\";s:4:\"2679\";s:7:\"updated\";N;s:7:\"created\";s:19:\"2022-03-04 21:25:37\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_4cd7cd394e366889689f3ec1146a4\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"9824\";s:7:\"updated\";s:19:\"2023-12-10 09:00:46\";s:7:\"created\";s:19:\"2022-01-31 21:02:53\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}i:15;O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";s:4:\"9546\";s:5:\"title\";s:20:\"Eliminate Duplicates\";s:4:\"slug\";s:27:\"wpcf7r-eliminate-duplicates\";s:12:\"premium_slug\";s:28:\"eliminate-duplicates-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";N;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";i:3;s:4:\"file\";N;s:7:\"version\";N;s:11:\"auto_update\";N;s:4:\"info\";O:14:\"FS_Plugin_Info\":13:{s:9:\"plugin_id\";s:5:\"12020\";s:11:\"description\";N;s:17:\"short_description\";s:31:\"Limit multiple form submissions\";s:10:\"banner_url\";s:69:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12020/banner.jpeg\";s:15:\"card_banner_url\";s:74:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12020/card_banner.jpeg\";s:15:\"selling_point_0\";s:58:\"Limit multiple submissions forms from the same IP address.\";s:15:\"selling_point_1\";s:56:\"Limit multiple submissions by any combination of fields.\";s:15:\"selling_point_2\";s:72:\"Set a time frame in which the user wont be able to submit a second form.\";s:11:\"screenshots\";O:8:\"stdClass\":1:{s:12:\"screenshot_0\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12020/screenshots/0.png\";}s:2:\"id\";s:4:\"3350\";s:7:\"updated\";N;s:7:\"created\";s:19:\"2023-02-13 23:31:56\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_03d1080f5aa780b42ca9a5e77075d\";s:10:\"secret_key\";N;s:2:\"id\";s:5:\"12020\";s:7:\"updated\";s:19:\"2023-12-10 09:00:46\";s:7:\"created\";s:19:\"2023-02-13 21:00:24\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}i:16;O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";s:4:\"9546\";s:5:\"title\";s:15:\"Multi Step Form\";s:4:\"slug\";s:15:\"multi-step-form\";s:12:\"premium_slug\";s:22:\"wpcf7r-multi-step-form\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";N;s:19:\"is_wp_org_compliant\";b:0;s:22:\"premium_releases_count\";i:2;s:4:\"file\";N;s:7:\"version\";N;s:11:\"auto_update\";N;s:4:\"info\";O:14:\"FS_Plugin_Info\":13:{s:9:\"plugin_id\";s:5:\"12446\";s:11:\"description\";N;s:17:\"short_description\";N;s:10:\"banner_url\";s:69:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12446/banner.jpeg\";s:15:\"card_banner_url\";s:74:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12446/card_banner.jpeg\";s:15:\"selling_point_0\";s:29:\"Easily create multistep forms\";s:15:\"selling_point_1\";N;s:15:\"selling_point_2\";N;s:11:\"screenshots\";O:8:\"stdClass\":2:{s:12:\"screenshot_0\";s:76:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12446/screenshots/0.jpeg\";s:12:\"screenshot_2\";s:76:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12446/screenshots/2.jpeg\";}s:2:\"id\";s:4:\"3464\";s:7:\"updated\";s:19:\"2023-04-12 08:04:15\";s:7:\"created\";s:19:\"2023-04-12 07:42:05\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_5b6f73cca1ea5bfc1c81c0e57187f\";s:10:\"secret_key\";N;s:2:\"id\";s:5:\"12446\";s:7:\"updated\";s:19:\"2023-12-11 22:16:21\";s:7:\"created\";s:19:\"2023-04-11 12:53:20\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}i:17;O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";s:4:\"9546\";s:5:\"title\";s:18:\"Monday Integration\";s:4:\"slug\";s:18:\"monday-integration\";s:12:\"premium_slug\";s:26:\"monday-integration-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";N;s:19:\"is_wp_org_compliant\";b:0;s:22:\"premium_releases_count\";i:6;s:4:\"file\";N;s:7:\"version\";N;s:11:\"auto_update\";N;s:4:\"info\";O:14:\"FS_Plugin_Info\":13:{s:9:\"plugin_id\";s:5:\"12516\";s:11:\"description\";s:1296:\"With Monday Integration Add-on, you can easily connect your Contact Form 7 forms to Monday.com and automatically create items or tasks in your Monday.com boards or projects when a form is submitted. This add-on eliminates the need for manual data entry and streamlines your workflow, making it more efficient and error-free.\n\nThe features of Monday Integration Add-on may include:\n\nAutomatic creation of items or tasks in Monday.com when a Contact Form 7 form is submitted, based on predefined mapping of form fields to Monday.com fields.\nCustomizable mapping of Contact Form 7 form fields to Monday.com fields, allowing you to map form data to the relevant fields in your Monday.com boards or projects.\nWith Conditional logic of actions Add-on - Support for multiple Monday.com boards or projects, allowing you to send form submissions to different boards or projects based on your requirements.\n\nEasy setup and configuration through a user-friendly interface, allowing you to set up the integration without any coding knowledge.\n\nIn summary, Monday Integration Add-on is a powerful tool that enables seamless integration between Contact Form 7 and Monday.com, saving you time and effort by automating the process of capturing form data and transferring it to your Monday.com boards or projects.\";s:17:\"short_description\";s:133:\"Easily connect your Contact Form 7 forms to Monday.com and automatically create items or tasks in your Monday.com boards or projects.\";s:10:\"banner_url\";s:69:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12516/banner.jpeg\";s:15:\"card_banner_url\";s:74:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12516/card_banner.jpeg\";s:15:\"selling_point_0\";s:128:\"Automatic creation of items or tasks in Monday.com when a Contact Form 7 form is submitted, based on predefined mapping of form \";s:15:\"selling_point_1\";s:128:\"Customizable mapping of Contact Form 7 form fields to Monday.com fields, allowing you to map form data to the relevant fields in\";s:15:\"selling_point_2\";s:128:\"Easy setup and configuration through a user-friendly interface, allowing you to set up the integration without any coding knowle\";s:11:\"screenshots\";O:8:\"stdClass\":2:{s:12:\"screenshot_0\";s:76:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12516/screenshots/0.jpeg\";s:12:\"screenshot_2\";s:76:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12516/screenshots/2.jpeg\";}s:2:\"id\";s:4:\"3474\";s:7:\"updated\";s:19:\"2023-12-21 18:59:19\";s:7:\"created\";s:19:\"2023-04-20 22:16:22\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_db378fcc4056228190315e47ba62f\";s:10:\"secret_key\";N;s:2:\"id\";s:5:\"12516\";s:7:\"updated\";s:19:\"2023-12-23 10:13:52\";s:7:\"created\";s:19:\"2023-04-20 22:02:25\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}}}}','yes'),(190,'fs_gdpr','a:1:{s:2:\"u1\";a:1:{s:8:\"required\";b:0;}}','yes'),(191,'fs_api_cache','a:2:{s:55:\"get:/v1/plugins/9546/addons.json?enriched=true&count=50\";O:8:\"stdClass\":3:{s:6:\"result\";O:8:\"stdClass\":1:{s:7:\"plugins\";a:18:{i:0;O:8:\"stdClass\":34:{s:16:\"parent_plugin_id\";s:4:\"9546\";s:12:\"developer_id\";s:5:\"12857\";s:8:\"store_id\";s:4:\"4180\";s:10:\"install_id\";s:7:\"8700567\";s:4:\"slug\";s:24:\"wpcf7r-conditional-logic\";s:5:\"title\";s:25:\"Actions conditional logic\";s:11:\"environment\";i:0;s:4:\"icon\";s:99:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9547/icons/a22486ab43b55042bba960bd03a29b22.png\";s:15:\"default_plan_id\";s:5:\"16063\";s:5:\"plans\";i:16063;s:8:\"features\";N;s:17:\"money_back_period\";i:14;s:13:\"refund_policy\";s:6:\"strict\";s:24:\"annual_renewals_discount\";i:10;s:22:\"renewals_discount_type\";s:10:\"percentage\";s:11:\"is_released\";b:1;s:15:\"is_sdk_required\";b:1;s:18:\"is_pricing_visible\";b:1;s:19:\"is_wp_org_compliant\";b:0;s:6:\"is_off\";b:0;s:24:\"is_only_for_new_installs\";b:0;s:14:\"installs_limit\";N;s:19:\"free_releases_count\";i:0;s:22:\"premium_releases_count\";i:2;s:17:\"accepted_payments\";i:0;s:7:\"plan_id\";s:1:\"0\";s:4:\"type\";s:6:\"plugin\";s:9:\"is_static\";b:0;s:10:\"public_key\";s:32:\"pk_7b26566eaa100fecced4da79f1b89\";s:2:\"id\";s:4:\"9547\";s:7:\"created\";s:19:\"2021-12-17 06:51:50\";s:7:\"updated\";s:19:\"2023-12-28 19:42:32\";s:4:\"info\";O:8:\"stdClass\":13:{s:9:\"plugin_id\";s:4:\"9547\";s:3:\"url\";s:75:\"https://redirection-for-contact-form7.com/product/wpcf7r-conditional-logic/\";s:11:\"description\";s:297:\"Conditional logic of actions extension adds powerful conditional rules management to your submission actions.\nSet If/Or rules for each action according to user input.\nYou will be able to control each of the available actions and define different scenarios according to the data filled by the user.\";s:17:\"short_description\";s:109:\"Conditional logic of actions extension adds powerful conditional rules management to your submission actions.\";s:10:\"banner_url\";s:67:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9547/banner.jpg\";s:15:\"card_banner_url\";s:73:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9547/card_banner.jpeg\";s:15:\"selling_point_0\";s:69:\"Redirect to different thank you pages with the basic redirect action.\";s:15:\"selling_point_1\";s:50:\"Sell different products with the PayPal extension.\";s:15:\"selling_point_2\";s:83:\"Manage your conversion pixels by user selections (use the free fire script action).\";s:11:\"screenshots\";O:8:\"stdClass\":2:{s:12:\"screenshot_0\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9547/screenshots/0.jpeg\";s:12:\"screenshot_1\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9547/screenshots/1.jpeg\";}s:2:\"id\";s:4:\"2530\";s:7:\"created\";s:19:\"2021-12-17 07:05:46\";s:7:\"updated\";s:19:\"2021-12-17 09:20:19\";}s:12:\"premium_slug\";s:24:\"wpcf7r-conditional-logic\";}i:1;O:8:\"stdClass\":34:{s:16:\"parent_plugin_id\";s:4:\"9546\";s:12:\"developer_id\";s:5:\"12857\";s:8:\"store_id\";s:4:\"4180\";s:10:\"install_id\";s:7:\"8701150\";s:4:\"slug\";s:10:\"wpcf7r-api\";s:5:\"title\";s:16:\"API Integrations\";s:11:\"environment\";i:0;s:4:\"icon\";s:99:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9549/icons/a936e38f73ccd2e8852eb0e46e923fab.png\";s:15:\"default_plan_id\";s:5:\"16067\";s:5:\"plans\";i:16067;s:8:\"features\";N;s:17:\"money_back_period\";i:14;s:13:\"refund_policy\";s:6:\"strict\";s:24:\"annual_renewals_discount\";i:10;s:22:\"renewals_discount_type\";s:10:\"percentage\";s:11:\"is_released\";b:1;s:15:\"is_sdk_required\";b:1;s:18:\"is_pricing_visible\";b:1;s:19:\"is_wp_org_compliant\";b:0;s:6:\"is_off\";b:0;s:24:\"is_only_for_new_installs\";b:0;s:14:\"installs_limit\";N;s:19:\"free_releases_count\";i:0;s:22:\"premium_releases_count\";i:3;s:17:\"accepted_payments\";i:0;s:7:\"plan_id\";s:1:\"0\";s:4:\"type\";s:6:\"plugin\";s:9:\"is_static\";b:0;s:10:\"public_key\";s:32:\"pk_1717795231fbbf807b4db7b2c127d\";s:2:\"id\";s:4:\"9549\";s:7:\"created\";s:19:\"2021-12-17 09:40:43\";s:7:\"updated\";s:19:\"2023-12-30 02:11:11\";s:4:\"info\";O:8:\"stdClass\":13:{s:9:\"plugin_id\";s:4:\"9549\";s:3:\"url\";N;s:11:\"description\";s:424:\"3rd party integration for Contact Form 7 is easy with contact-form-7 to API.\n\nUse the API results with custom JavaScript/Send the data using www-form-urlencoded.\nAlongside conditional actions logic extension define different set of registration rules.\nUse any contact form 7 tag/multiple tags.\nManipulate the user input with custom functions (MD5/Urlencode/Base64_encode/Utf8 Decode).\nTest your settings and view debug logs.\";s:17:\"short_description\";s:58:\"API extension allows you to Send your Leads to remote API.\";s:10:\"banner_url\";s:68:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9549/banner.jpeg\";s:15:\"card_banner_url\";s:73:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9549/card_banner.jpeg\";s:15:\"selling_point_0\";s:47:\"Supports POST/GET/DELETE/PATCH PARAMS/JSON/XML.\";s:15:\"selling_point_1\";s:72:\"Map your custom form fields according to your API provider instructions.\";s:15:\"selling_point_2\";s:24:\"Set custom HTTP HEADERS.\";s:11:\"screenshots\";O:8:\"stdClass\":3:{s:12:\"screenshot_0\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9549/screenshots/0.jpeg\";s:12:\"screenshot_1\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9549/screenshots/1.jpeg\";s:12:\"screenshot_2\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9549/screenshots/2.jpeg\";}s:2:\"id\";s:4:\"2531\";s:7:\"created\";s:19:\"2021-12-17 10:07:59\";s:7:\"updated\";s:19:\"2023-12-21 19:03:23\";}s:12:\"premium_slug\";s:10:\"wpcf7r-api\";}i:2;O:8:\"stdClass\":34:{s:16:\"parent_plugin_id\";s:4:\"9546\";s:12:\"developer_id\";s:5:\"12857\";s:8:\"store_id\";s:4:\"4180\";s:10:\"install_id\";s:7:\"8701315\";s:4:\"slug\";s:12:\"wpcf7r-popup\";s:5:\"title\";s:15:\"Thank You Popup\";s:11:\"environment\";i:0;s:4:\"icon\";s:99:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9551/icons/9d5febf940a349ccb340cf82ce7d81c6.png\";s:15:\"default_plan_id\";s:5:\"16070\";s:5:\"plans\";i:16070;s:8:\"features\";N;s:17:\"money_back_period\";i:14;s:13:\"refund_policy\";s:6:\"strict\";s:24:\"annual_renewals_discount\";i:10;s:22:\"renewals_discount_type\";s:10:\"percentage\";s:11:\"is_released\";b:1;s:15:\"is_sdk_required\";b:1;s:18:\"is_pricing_visible\";b:1;s:19:\"is_wp_org_compliant\";b:0;s:6:\"is_off\";b:0;s:24:\"is_only_for_new_installs\";b:0;s:14:\"installs_limit\";N;s:19:\"free_releases_count\";i:0;s:22:\"premium_releases_count\";i:1;s:17:\"accepted_payments\";i:0;s:7:\"plan_id\";s:1:\"0\";s:4:\"type\";s:6:\"plugin\";s:9:\"is_static\";b:0;s:10:\"public_key\";s:32:\"pk_b496c98190df71609959aae524a62\";s:2:\"id\";s:4:\"9551\";s:7:\"created\";s:19:\"2021-12-17 10:14:18\";s:7:\"updated\";s:19:\"2023-12-29 10:02:22\";s:4:\"info\";O:8:\"stdClass\":13:{s:9:\"plugin_id\";s:4:\"9551\";s:3:\"url\";N;s:11:\"description\";s:121:\"Contact Form 7 Thank You Popup extension adds the ability to thank your users with a noticeable designed thank-you popup.\";s:17:\"short_description\";s:121:\"Contact Form 7 Thank You Popup extension adds the ability to thank your users with a noticeable designed thank-you popup.\";s:10:\"banner_url\";s:67:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9551/banner.png\";s:15:\"card_banner_url\";s:72:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9551/card_banner.png\";s:15:\"selling_point_0\";s:37:\"Create a popup for any of your forms.\";s:15:\"selling_point_1\";s:86:\"Easy design tools allows you to match the colors and styles to your own website style.\";s:15:\"selling_point_2\";s:39:\"You can create your own popup template!\";s:11:\"screenshots\";O:8:\"stdClass\":2:{s:12:\"screenshot_0\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9551/screenshots/0.jpeg\";s:12:\"screenshot_1\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9551/screenshots/1.jpeg\";}s:2:\"id\";s:4:\"2532\";s:7:\"created\";s:19:\"2021-12-17 10:31:52\";s:7:\"updated\";N;}s:12:\"premium_slug\";s:12:\"wpcf7r-popup\";}i:3;O:8:\"stdClass\":34:{s:16:\"parent_plugin_id\";s:4:\"9546\";s:12:\"developer_id\";s:5:\"12857\";s:8:\"store_id\";s:4:\"4180\";s:10:\"install_id\";s:7:\"8701411\";s:4:\"slug\";s:17:\"wpcf7r-create-pdf\";s:5:\"title\";s:11:\"PDF Creator\";s:11:\"environment\";i:0;s:4:\"icon\";s:99:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9552/icons/cb39a59e80247e084d1414de343f7b0f.png\";s:15:\"default_plan_id\";s:5:\"16072\";s:5:\"plans\";i:16072;s:8:\"features\";N;s:17:\"money_back_period\";i:14;s:13:\"refund_policy\";s:6:\"strict\";s:24:\"annual_renewals_discount\";i:10;s:22:\"renewals_discount_type\";s:10:\"percentage\";s:11:\"is_released\";b:1;s:15:\"is_sdk_required\";b:1;s:18:\"is_pricing_visible\";b:1;s:19:\"is_wp_org_compliant\";b:0;s:6:\"is_off\";b:0;s:24:\"is_only_for_new_installs\";b:0;s:14:\"installs_limit\";N;s:19:\"free_releases_count\";i:0;s:22:\"premium_releases_count\";i:7;s:17:\"accepted_payments\";i:0;s:7:\"plan_id\";s:1:\"0\";s:4:\"type\";s:6:\"plugin\";s:9:\"is_static\";b:0;s:10:\"public_key\";s:32:\"pk_116f452f6f2a22d22516d54cd06d8\";s:2:\"id\";s:4:\"9552\";s:7:\"created\";s:19:\"2021-12-17 10:38:05\";s:7:\"updated\";s:19:\"2023-12-23 10:16:41\";s:4:\"info\";O:8:\"stdClass\":13:{s:9:\"plugin_id\";s:4:\"9552\";s:3:\"url\";N;s:11:\"description\";s:27:\"Create PDF After Submission\";s:17:\"short_description\";s:92:\"Create PDF extension adds the option to create and send PDF using the submitted form fields.\";s:10:\"banner_url\";s:67:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9552/banner.png\";s:15:\"card_banner_url\";s:72:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9552/card_banner.png\";s:15:\"selling_point_0\";s:26:\"Set PDF header and footer.\";s:15:\"selling_point_1\";s:27:\"Set a background watermark.\";s:15:\"selling_point_2\";s:46:\"Separate pages and set padding and page sizes.\";s:11:\"screenshots\";O:8:\"stdClass\":2:{s:12:\"screenshot_0\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9552/screenshots/0.jpeg\";s:12:\"screenshot_1\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9552/screenshots/1.jpeg\";}s:2:\"id\";s:4:\"2533\";s:7:\"created\";s:19:\"2021-12-17 11:03:12\";s:7:\"updated\";N;}s:12:\"premium_slug\";s:17:\"wpcf7r-create-pdf\";}i:4;O:8:\"stdClass\":34:{s:16:\"parent_plugin_id\";s:4:\"9546\";s:12:\"developer_id\";s:5:\"12857\";s:8:\"store_id\";s:4:\"4180\";s:10:\"install_id\";s:7:\"8701549\";s:4:\"slug\";s:13:\"wpcf7r-stripe\";s:5:\"title\";s:18:\"Stripe Integration\";s:11:\"environment\";i:0;s:4:\"icon\";s:100:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9553/icons/c74fed8257a94cdce06f70b1a6eade0f.jpeg\";s:15:\"default_plan_id\";s:5:\"16074\";s:5:\"plans\";i:16074;s:8:\"features\";N;s:17:\"money_back_period\";i:14;s:13:\"refund_policy\";s:6:\"strict\";s:24:\"annual_renewals_discount\";i:10;s:22:\"renewals_discount_type\";s:10:\"percentage\";s:11:\"is_released\";b:1;s:15:\"is_sdk_required\";b:1;s:18:\"is_pricing_visible\";b:1;s:19:\"is_wp_org_compliant\";b:0;s:6:\"is_off\";b:0;s:24:\"is_only_for_new_installs\";b:0;s:14:\"installs_limit\";N;s:19:\"free_releases_count\";i:0;s:22:\"premium_releases_count\";i:1;s:17:\"accepted_payments\";i:0;s:7:\"plan_id\";s:1:\"0\";s:4:\"type\";s:6:\"plugin\";s:9:\"is_static\";b:0;s:10:\"public_key\";s:32:\"pk_84905c0f9166b5f0282d3031cd353\";s:2:\"id\";s:4:\"9553\";s:7:\"created\";s:19:\"2021-12-17 11:08:26\";s:7:\"updated\";s:19:\"2023-12-28 11:21:08\";s:4:\"info\";O:8:\"stdClass\":13:{s:9:\"plugin_id\";s:4:\"9553\";s:3:\"url\";N;s:11:\"description\";N;s:17:\"short_description\";s:90:\"Collect Payments with Stripe extension will allow you to collect payments from your users.\";s:10:\"banner_url\";s:67:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9553/banner.png\";s:15:\"card_banner_url\";s:72:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9553/card_banner.png\";s:15:\"selling_point_0\";s:29:\"Define your product settings.\";s:15:\"selling_point_1\";s:25:\"Map optional user fields.\";s:15:\"selling_point_2\";s:21:\"Add custom meta-data.\";s:11:\"screenshots\";O:8:\"stdClass\":3:{s:12:\"screenshot_0\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9553/screenshots/0.jpeg\";s:12:\"screenshot_1\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9553/screenshots/1.jpeg\";s:12:\"screenshot_2\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9553/screenshots/2.jpeg\";}s:2:\"id\";s:4:\"2534\";s:7:\"created\";s:19:\"2021-12-17 11:37:04\";s:7:\"updated\";N;}s:12:\"premium_slug\";s:13:\"wpcf7r-stripe\";}i:5;O:8:\"stdClass\":34:{s:16:\"parent_plugin_id\";s:4:\"9546\";s:12:\"developer_id\";s:5:\"12857\";s:8:\"store_id\";s:4:\"4180\";s:10:\"install_id\";s:7:\"8701696\";s:4:\"slug\";s:14:\"wpcf7r-hubspot\";s:5:\"title\";s:19:\"HubSpot Integration\";s:11:\"environment\";i:0;s:4:\"icon\";s:99:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9554/icons/76b1a57c10c718b71490c266672b1e0c.png\";s:15:\"default_plan_id\";s:5:\"16076\";s:5:\"plans\";i:16076;s:8:\"features\";N;s:17:\"money_back_period\";i:14;s:13:\"refund_policy\";s:6:\"strict\";s:24:\"annual_renewals_discount\";i:10;s:22:\"renewals_discount_type\";s:10:\"percentage\";s:11:\"is_released\";b:1;s:15:\"is_sdk_required\";b:1;s:18:\"is_pricing_visible\";b:1;s:19:\"is_wp_org_compliant\";b:0;s:6:\"is_off\";b:0;s:24:\"is_only_for_new_installs\";b:0;s:14:\"installs_limit\";N;s:19:\"free_releases_count\";i:0;s:22:\"premium_releases_count\";i:4;s:17:\"accepted_payments\";i:0;s:7:\"plan_id\";s:1:\"0\";s:4:\"type\";s:6:\"plugin\";s:9:\"is_static\";b:0;s:10:\"public_key\";s:32:\"pk_07a13955ff7fbbd212e4c200a9540\";s:2:\"id\";s:4:\"9554\";s:7:\"created\";s:19:\"2021-12-17 11:42:41\";s:7:\"updated\";s:19:\"2023-12-23 10:09:28\";s:4:\"info\";O:8:\"stdClass\":13:{s:9:\"plugin_id\";s:4:\"9554\";s:3:\"url\";N;s:11:\"description\";N;s:17:\"short_description\";s:108:\"Hubspot Integration extensions adds the ability to send form submissions from Contact Form 7 to HubSpot CRM.\";s:10:\"banner_url\";s:67:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9554/banner.png\";s:15:\"card_banner_url\";s:72:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9554/card_banner.png\";s:15:\"selling_point_0\";s:55:\"Get a list of available entities to update on your CRM.\";s:15:\"selling_point_1\";s:42:\"Map your form fields with your CRM fields.\";s:15:\"selling_point_2\";N;s:11:\"screenshots\";O:8:\"stdClass\":1:{s:12:\"screenshot_0\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9554/screenshots/0.jpeg\";}s:2:\"id\";s:4:\"2535\";s:7:\"created\";s:19:\"2021-12-17 12:06:30\";s:7:\"updated\";N;}s:12:\"premium_slug\";s:14:\"wpcf7r-hubspot\";}i:6;O:8:\"stdClass\":34:{s:16:\"parent_plugin_id\";s:4:\"9546\";s:12:\"developer_id\";s:5:\"12857\";s:8:\"store_id\";s:4:\"4180\";s:10:\"install_id\";s:7:\"8701812\";s:4:\"slug\";s:17:\"wpcf7r-salesforce\";s:5:\"title\";s:22:\"Salesforce Integration\";s:11:\"environment\";i:0;s:4:\"icon\";s:99:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9555/icons/0e93c3dfc42f42bdaa088837226214f6.png\";s:15:\"default_plan_id\";s:5:\"16078\";s:5:\"plans\";i:16078;s:8:\"features\";N;s:17:\"money_back_period\";i:14;s:13:\"refund_policy\";s:6:\"strict\";s:24:\"annual_renewals_discount\";i:10;s:22:\"renewals_discount_type\";s:10:\"percentage\";s:11:\"is_released\";b:1;s:15:\"is_sdk_required\";b:1;s:18:\"is_pricing_visible\";b:1;s:19:\"is_wp_org_compliant\";b:0;s:6:\"is_off\";b:0;s:24:\"is_only_for_new_installs\";b:0;s:14:\"installs_limit\";N;s:19:\"free_releases_count\";i:0;s:22:\"premium_releases_count\";i:5;s:17:\"accepted_payments\";i:0;s:7:\"plan_id\";s:1:\"0\";s:4:\"type\";s:6:\"plugin\";s:9:\"is_static\";b:0;s:10:\"public_key\";s:32:\"pk_33a94c674259ac5addbd61f1bcb69\";s:2:\"id\";s:4:\"9555\";s:7:\"created\";s:19:\"2021-12-17 12:08:23\";s:7:\"updated\";s:19:\"2023-12-23 10:10:48\";s:4:\"info\";O:8:\"stdClass\":13:{s:9:\"plugin_id\";s:4:\"9555\";s:3:\"url\";N;s:11:\"description\";s:132:\"Contact Form 7 to Salesforce Integration extensions adds the ability to send submission forms from Contact Form 7 to Salesforce CRM.\";s:17:\"short_description\";s:51:\"Integrate your contact form 7 forms with Salesforce\";s:10:\"banner_url\";s:67:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9555/banner.png\";s:15:\"card_banner_url\";s:72:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9555/card_banner.png\";s:15:\"selling_point_0\";s:62:\"Select from a list of available objects to update on your CRM.\";s:15:\"selling_point_1\";s:30:\"Update default/custom objects.\";s:15:\"selling_point_2\";s:42:\"Map your form fields with your CRM fields.\";s:11:\"screenshots\";O:8:\"stdClass\":1:{s:12:\"screenshot_0\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9555/screenshots/0.jpeg\";}s:2:\"id\";s:4:\"2537\";s:7:\"created\";s:19:\"2021-12-17 16:39:25\";s:7:\"updated\";N;}s:12:\"premium_slug\";s:17:\"wpcf7r-salesforce\";}i:7;O:8:\"stdClass\":34:{s:16:\"parent_plugin_id\";s:4:\"9546\";s:12:\"developer_id\";s:5:\"12857\";s:8:\"store_id\";s:4:\"4180\";s:10:\"install_id\";s:7:\"8703162\";s:4:\"slug\";s:18:\"wpcf7r-create-post\";s:5:\"title\";s:21:\"Front End Create Post\";s:11:\"environment\";i:0;s:4:\"icon\";s:99:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9556/icons/71a27485896f22967971bccbb9373d1e.png\";s:15:\"default_plan_id\";s:5:\"16080\";s:5:\"plans\";i:16080;s:8:\"features\";N;s:17:\"money_back_period\";i:14;s:13:\"refund_policy\";s:6:\"strict\";s:24:\"annual_renewals_discount\";i:10;s:22:\"renewals_discount_type\";s:10:\"percentage\";s:11:\"is_released\";b:1;s:15:\"is_sdk_required\";b:1;s:18:\"is_pricing_visible\";b:1;s:19:\"is_wp_org_compliant\";b:0;s:6:\"is_off\";b:0;s:24:\"is_only_for_new_installs\";b:0;s:14:\"installs_limit\";N;s:19:\"free_releases_count\";i:0;s:22:\"premium_releases_count\";i:1;s:17:\"accepted_payments\";i:0;s:7:\"plan_id\";s:1:\"0\";s:4:\"type\";s:6:\"plugin\";s:9:\"is_static\";b:0;s:10:\"public_key\";s:32:\"pk_71c2812495ff719dd3f5c59d8160f\";s:2:\"id\";s:4:\"9556\";s:7:\"created\";s:19:\"2021-12-17 16:41:29\";s:7:\"updated\";s:19:\"2023-12-10 09:00:46\";s:4:\"info\";O:8:\"stdClass\":13:{s:9:\"plugin_id\";s:4:\"9556\";s:3:\"url\";N;s:11:\"description\";s:119:\"Allow users to publish blog-posts.\nCreate Woo-commerce coupons.\nCreate support tickets.\nInsert new Woo-commerce orders.\";s:17:\"short_description\";s:114:\"Frontend Publish Post extension adds the ability to allow your users to publish posts from your website front-end.\";s:10:\"banner_url\";s:67:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9556/banner.png\";s:15:\"card_banner_url\";s:72:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9556/card_banner.png\";s:15:\"selling_point_0\";s:84:\"Select which post type to create – custom post types and Taxonomies are supported.\";s:15:\"selling_point_1\";s:21:\"Map custom meta keys.\";s:15:\"selling_point_2\";s:103:\"Assign post to specific category/taxonomy or let the users choose category/taxonomy from any for field.\";s:11:\"screenshots\";O:8:\"stdClass\":2:{s:12:\"screenshot_0\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9556/screenshots/0.jpeg\";s:12:\"screenshot_1\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9556/screenshots/1.jpeg\";}s:2:\"id\";s:4:\"2538\";s:7:\"created\";s:19:\"2021-12-17 17:00:49\";s:7:\"updated\";N;}s:12:\"premium_slug\";s:18:\"wpcf7r-create-post\";}i:8;O:8:\"stdClass\":34:{s:16:\"parent_plugin_id\";s:4:\"9546\";s:12:\"developer_id\";s:5:\"12857\";s:8:\"store_id\";s:4:\"4180\";s:10:\"install_id\";s:7:\"8703252\";s:4:\"slug\";s:20:\"wpcf7r-custom-errors\";s:5:\"title\";s:18:\"Custom Validations\";s:11:\"environment\";i:0;s:4:\"icon\";s:99:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9557/icons/2351be9c57fbdaa9f672060a73173e7c.png\";s:15:\"default_plan_id\";s:5:\"16083\";s:5:\"plans\";i:16083;s:8:\"features\";N;s:17:\"money_back_period\";i:14;s:13:\"refund_policy\";s:6:\"strict\";s:24:\"annual_renewals_discount\";i:10;s:22:\"renewals_discount_type\";s:10:\"percentage\";s:11:\"is_released\";b:1;s:15:\"is_sdk_required\";b:1;s:18:\"is_pricing_visible\";b:1;s:19:\"is_wp_org_compliant\";b:0;s:6:\"is_off\";b:0;s:24:\"is_only_for_new_installs\";b:0;s:14:\"installs_limit\";N;s:19:\"free_releases_count\";i:0;s:22:\"premium_releases_count\";i:2;s:17:\"accepted_payments\";i:0;s:7:\"plan_id\";s:1:\"0\";s:4:\"type\";s:6:\"plugin\";s:9:\"is_static\";b:0;s:10:\"public_key\";s:32:\"pk_cd176f7d3a819754da960c28302c8\";s:2:\"id\";s:4:\"9557\";s:7:\"created\";s:19:\"2021-12-17 17:02:43\";s:7:\"updated\";s:19:\"2023-12-23 11:41:10\";s:4:\"info\";O:8:\"stdClass\":13:{s:9:\"plugin_id\";s:4:\"9557\";s:3:\"url\";N;s:11:\"description\";N;s:17:\"short_description\";s:84:\"Custom Validations extension adds the ability to manage your form fields validation.\";s:10:\"banner_url\";s:67:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9557/banner.png\";s:15:\"card_banner_url\";s:72:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9557/card_banner.png\";s:15:\"selling_point_0\";s:57:\"Set custom validation rules for each of your form fields.\";s:15:\"selling_point_1\";s:48:\"Set custom error messages for individual fields.\";s:15:\"selling_point_2\";s:62:\"Set any validation rule/s to any of your contact form 7 forms.\";s:11:\"screenshots\";O:8:\"stdClass\":1:{s:12:\"screenshot_0\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9557/screenshots/0.jpeg\";}s:2:\"id\";s:4:\"2539\";s:7:\"created\";s:19:\"2021-12-17 18:19:33\";s:7:\"updated\";N;}s:12:\"premium_slug\";s:20:\"wpcf7r-custom-errors\";}i:9;O:8:\"stdClass\":34:{s:16:\"parent_plugin_id\";s:4:\"9546\";s:12:\"developer_id\";s:5:\"12857\";s:8:\"store_id\";s:4:\"4180\";s:10:\"install_id\";s:7:\"8703637\";s:4:\"slug\";s:16:\"wpcf7r-mailchimp\";s:5:\"title\";s:22:\"Mail-chimp Integration\";s:11:\"environment\";i:0;s:4:\"icon\";s:99:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9559/icons/bc8157734ab14e2451e5c5ac5f579d6b.png\";s:15:\"default_plan_id\";s:5:\"16086\";s:5:\"plans\";i:16086;s:8:\"features\";N;s:17:\"money_back_period\";i:14;s:13:\"refund_policy\";s:6:\"strict\";s:24:\"annual_renewals_discount\";i:10;s:22:\"renewals_discount_type\";s:10:\"percentage\";s:11:\"is_released\";b:1;s:15:\"is_sdk_required\";b:1;s:18:\"is_pricing_visible\";b:1;s:19:\"is_wp_org_compliant\";b:0;s:6:\"is_off\";b:0;s:24:\"is_only_for_new_installs\";b:0;s:14:\"installs_limit\";N;s:19:\"free_releases_count\";i:0;s:22:\"premium_releases_count\";i:2;s:17:\"accepted_payments\";i:0;s:7:\"plan_id\";s:1:\"0\";s:4:\"type\";s:6:\"plugin\";s:9:\"is_static\";b:0;s:10:\"public_key\";s:32:\"pk_4aa97db128c81596b751fc80e6584\";s:2:\"id\";s:4:\"9559\";s:7:\"created\";s:19:\"2021-12-17 18:27:19\";s:7:\"updated\";s:19:\"2023-12-23 11:53:18\";s:4:\"info\";O:8:\"stdClass\":13:{s:9:\"plugin_id\";s:4:\"9559\";s:3:\"url\";N;s:11:\"description\";N;s:17:\"short_description\";s:116:\"Subscribe Users To Mail-chimp extension adds the ability to register submitted forms to any of your Mail-chimp list.\";s:10:\"banner_url\";s:67:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9559/banner.png\";s:15:\"card_banner_url\";s:72:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9559/card_banner.png\";s:15:\"selling_point_0\";s:22:\"Manage each form list.\";s:15:\"selling_point_1\";s:34:\"Map your custom Mail-chimp fields.\";s:15:\"selling_point_2\";s:22:\"Control double Opt-In.\";s:11:\"screenshots\";O:8:\"stdClass\":1:{s:12:\"screenshot_0\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9559/screenshots/0.jpeg\";}s:2:\"id\";s:4:\"2540\";s:7:\"created\";s:19:\"2021-12-17 19:43:57\";s:7:\"updated\";N;}s:12:\"premium_slug\";s:16:\"wpcf7r-mailchimp\";}i:10;O:8:\"stdClass\":34:{s:16:\"parent_plugin_id\";s:4:\"9546\";s:12:\"developer_id\";s:5:\"12857\";s:8:\"store_id\";s:4:\"4180\";s:10:\"install_id\";s:7:\"8703966\";s:4:\"slug\";s:12:\"wpcf7r-login\";s:5:\"title\";s:18:\"Custom Login Forms\";s:11:\"environment\";i:0;s:4:\"icon\";s:99:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9560/icons/5e4ac8c31d7c775e9ceb8fa2a84e5dbd.png\";s:15:\"default_plan_id\";s:5:\"16088\";s:5:\"plans\";i:16088;s:8:\"features\";N;s:17:\"money_back_period\";i:14;s:13:\"refund_policy\";s:6:\"strict\";s:24:\"annual_renewals_discount\";i:10;s:22:\"renewals_discount_type\";s:10:\"percentage\";s:11:\"is_released\";b:1;s:15:\"is_sdk_required\";b:1;s:18:\"is_pricing_visible\";b:1;s:19:\"is_wp_org_compliant\";b:0;s:6:\"is_off\";b:0;s:24:\"is_only_for_new_installs\";b:0;s:14:\"installs_limit\";N;s:19:\"free_releases_count\";i:0;s:22:\"premium_releases_count\";i:4;s:17:\"accepted_payments\";i:0;s:7:\"plan_id\";s:1:\"0\";s:4:\"type\";s:6:\"plugin\";s:9:\"is_static\";b:0;s:10:\"public_key\";s:32:\"pk_0d66cb30ec55c7f23e45cc41c3e43\";s:2:\"id\";s:4:\"9560\";s:7:\"created\";s:19:\"2021-12-17 19:45:13\";s:7:\"updated\";s:19:\"2023-12-08 15:55:54\";s:4:\"info\";O:8:\"stdClass\":13:{s:9:\"plugin_id\";s:4:\"9560\";s:3:\"url\";N;s:11:\"description\";N;s:17:\"short_description\";s:96:\"Custom Login Forms extension will allow you to create custom login forms for your website users.\";s:10:\"banner_url\";s:67:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9560/banner.png\";s:15:\"card_banner_url\";s:72:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9560/card_banner.png\";s:15:\"selling_point_0\";s:28:\"Define the user login field.\";s:15:\"selling_point_1\";s:31:\"Define the user password field.\";s:15:\"selling_point_2\";s:33:\"Add your general failure message.\";s:11:\"screenshots\";O:8:\"stdClass\":1:{s:12:\"screenshot_0\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9560/screenshots/0.jpeg\";}s:2:\"id\";s:4:\"2541\";s:7:\"created\";s:19:\"2021-12-17 19:55:35\";s:7:\"updated\";N;}s:12:\"premium_slug\";s:12:\"wpcf7r-login\";}i:11;O:8:\"stdClass\":34:{s:16:\"parent_plugin_id\";s:4:\"9546\";s:12:\"developer_id\";s:5:\"12857\";s:8:\"store_id\";s:4:\"4180\";s:10:\"install_id\";s:7:\"8705400\";s:4:\"slug\";s:15:\"wpcf7r-register\";s:5:\"title\";s:25:\"Custom Registration Forms\";s:11:\"environment\";i:0;s:4:\"icon\";s:99:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9564/icons/d594e55adf7086848936916ce05c4667.png\";s:15:\"default_plan_id\";s:5:\"16095\";s:5:\"plans\";i:16095;s:8:\"features\";N;s:17:\"money_back_period\";i:14;s:13:\"refund_policy\";s:6:\"strict\";s:24:\"annual_renewals_discount\";i:10;s:22:\"renewals_discount_type\";s:10:\"percentage\";s:11:\"is_released\";b:1;s:15:\"is_sdk_required\";b:1;s:18:\"is_pricing_visible\";b:1;s:19:\"is_wp_org_compliant\";b:0;s:6:\"is_off\";b:0;s:24:\"is_only_for_new_installs\";b:0;s:14:\"installs_limit\";N;s:19:\"free_releases_count\";i:0;s:22:\"premium_releases_count\";i:2;s:17:\"accepted_payments\";i:0;s:7:\"plan_id\";s:1:\"0\";s:4:\"type\";s:6:\"plugin\";s:9:\"is_static\";b:0;s:10:\"public_key\";s:32:\"pk_e1418dc8f85eaee980271a67e446e\";s:2:\"id\";s:4:\"9564\";s:7:\"created\";s:19:\"2021-12-18 07:20:55\";s:7:\"updated\";s:19:\"2023-11-16 00:42:52\";s:4:\"info\";O:8:\"stdClass\":13:{s:9:\"plugin_id\";s:4:\"9564\";s:3:\"url\";N;s:11:\"description\";s:441:\"Define password and password validation fields or generate auto passwords.\nSend new user email notifications with your custom template.\nOptionally auto login the user after completed registration.\nDefine the registered user role.\nAlongside conditional actions logic extension define different set of registration rules.\nMap custom user meta fields that will be added to the user on your admin panel.\nUse any contact form 7 tag/multiple tags.\";s:17:\"short_description\";s:93:\"Custom Registration Forms extension adds the ability to create custom user registration form.\";s:10:\"banner_url\";s:67:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9564/banner.png\";s:15:\"card_banner_url\";s:72:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9564/card_banner.png\";s:15:\"selling_point_0\";s:49:\"Easily create multiple custom registration Forms.\";s:15:\"selling_point_1\";s:57:\"Map basic user fields and/or create new user meta fields.\";s:15:\"selling_point_2\";s:74:\"Define password and password validation fields or generate auto passwords.\";s:11:\"screenshots\";O:8:\"stdClass\":2:{s:12:\"screenshot_0\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9564/screenshots/0.jpeg\";s:12:\"screenshot_1\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9564/screenshots/1.jpeg\";}s:2:\"id\";s:4:\"2543\";s:7:\"created\";s:19:\"2021-12-18 07:36:31\";s:7:\"updated\";N;}s:12:\"premium_slug\";s:15:\"wpcf7r-register\";}i:12;O:8:\"stdClass\":34:{s:16:\"parent_plugin_id\";s:4:\"9546\";s:12:\"developer_id\";s:5:\"12857\";s:8:\"store_id\";s:4:\"4180\";s:10:\"install_id\";s:7:\"8705428\";s:4:\"slug\";s:13:\"wpcf7r-paypal\";s:5:\"title\";s:18:\"Paypal integration\";s:11:\"environment\";i:0;s:4:\"icon\";s:99:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9565/icons/1656469977acf131a54444602ced0db9.png\";s:15:\"default_plan_id\";s:5:\"16097\";s:5:\"plans\";i:16097;s:8:\"features\";N;s:17:\"money_back_period\";i:14;s:13:\"refund_policy\";s:6:\"strict\";s:24:\"annual_renewals_discount\";i:10;s:22:\"renewals_discount_type\";s:10:\"percentage\";s:11:\"is_released\";b:1;s:15:\"is_sdk_required\";b:1;s:18:\"is_pricing_visible\";b:1;s:19:\"is_wp_org_compliant\";b:0;s:6:\"is_off\";b:0;s:24:\"is_only_for_new_installs\";b:0;s:14:\"installs_limit\";N;s:19:\"free_releases_count\";i:0;s:22:\"premium_releases_count\";i:1;s:17:\"accepted_payments\";i:0;s:7:\"plan_id\";s:1:\"0\";s:4:\"type\";s:6:\"plugin\";s:9:\"is_static\";b:0;s:10:\"public_key\";s:32:\"pk_56f0e90cd42f5de7ebe7c1e5f2bd3\";s:2:\"id\";s:4:\"9565\";s:7:\"created\";s:19:\"2021-12-18 07:38:12\";s:7:\"updated\";s:19:\"2023-12-22 17:58:11\";s:4:\"info\";O:8:\"stdClass\":13:{s:9:\"plugin_id\";s:4:\"9565\";s:3:\"url\";N;s:11:\"description\";s:467:\"Unlimited forms.\nDefine your product settings.\nMap optional user fields (addresses/names/phone numbers etc.).\nDefine return and cancel url.\nSelect the interface language.\nSelect the payment currency.\nSelect the payment action (Sale/Authorize)\nUse any available contact form 7 shortcode to define the product details/quantities and more.\nUse conditional actions logic to sell different products.\nUse sandbox/live account.\nOpen PayPal on a new window/redirect the user.\";s:17:\"short_description\";s:80:\"Redirect to PayPal extension will allow you to collect payments from your users.\";s:10:\"banner_url\";s:67:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9565/banner.png\";s:15:\"card_banner_url\";s:72:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9565/card_banner.png\";s:15:\"selling_point_0\";s:54:\"Sell any product you like with an easy and fast setup.\";s:15:\"selling_point_1\";s:62:\"Map optional user fields (addresses/names/phone numbers etc.).\";s:15:\"selling_point_2\";s:29:\"Define return and cancel url.\";s:11:\"screenshots\";O:8:\"stdClass\":3:{s:12:\"screenshot_0\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9565/screenshots/0.jpeg\";s:12:\"screenshot_1\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9565/screenshots/1.jpeg\";s:12:\"screenshot_2\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9565/screenshots/2.jpeg\";}s:2:\"id\";s:4:\"2544\";s:7:\"created\";s:19:\"2021-12-18 07:52:29\";s:7:\"updated\";N;}s:12:\"premium_slug\";s:13:\"wpcf7r-paypal\";}i:13;O:8:\"stdClass\":34:{s:16:\"parent_plugin_id\";s:4:\"9546\";s:12:\"developer_id\";s:5:\"12857\";s:8:\"store_id\";s:4:\"4180\";s:10:\"install_id\";s:7:\"8738840\";s:4:\"slug\";s:14:\"wpcf7r-twillio\";s:5:\"title\";s:15:\"Sms with twilio\";s:11:\"environment\";i:0;s:4:\"icon\";s:99:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9592/icons/5452ba2c4c5d469fa75cc6a14a65124a.png\";s:15:\"default_plan_id\";s:5:\"16146\";s:5:\"plans\";i:16146;s:8:\"features\";N;s:17:\"money_back_period\";N;s:13:\"refund_policy\";N;s:24:\"annual_renewals_discount\";N;s:22:\"renewals_discount_type\";s:10:\"percentage\";s:11:\"is_released\";b:1;s:15:\"is_sdk_required\";b:1;s:18:\"is_pricing_visible\";b:1;s:19:\"is_wp_org_compliant\";b:0;s:6:\"is_off\";b:0;s:24:\"is_only_for_new_installs\";b:0;s:14:\"installs_limit\";N;s:19:\"free_releases_count\";i:1;s:22:\"premium_releases_count\";i:1;s:17:\"accepted_payments\";i:0;s:7:\"plan_id\";s:1:\"0\";s:4:\"type\";s:6:\"plugin\";s:9:\"is_static\";b:0;s:10:\"public_key\";s:32:\"pk_077760f2a7ad36b614bf7bdfcf2bb\";s:2:\"id\";s:4:\"9592\";s:7:\"created\";s:19:\"2021-12-25 15:11:18\";s:7:\"updated\";s:19:\"2023-12-21 19:12:27\";s:4:\"info\";O:8:\"stdClass\":13:{s:9:\"plugin_id\";s:4:\"9592\";s:3:\"url\";N;s:11:\"description\";N;s:17:\"short_description\";s:103:\"Sms with twilio allows you to send sms notifications to your users/yourself about new form submissions.\";s:10:\"banner_url\";s:68:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9592/banner.jpeg\";s:15:\"card_banner_url\";s:73:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9592/card_banner.jpeg\";s:15:\"selling_point_0\";s:45:\"Get notifications about new form submissions.\";s:15:\"selling_point_1\";s:36:\"Send success messages to your users.\";s:15:\"selling_point_2\";s:38:\"Send information to your users via SMS\";s:11:\"screenshots\";O:8:\"stdClass\":1:{s:12:\"screenshot_0\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9592/screenshots/0.jpeg\";}s:2:\"id\";s:4:\"2557\";s:7:\"created\";s:19:\"2021-12-25 15:43:36\";s:7:\"updated\";s:19:\"2023-12-21 19:12:00\";}s:12:\"premium_slug\";s:22:\"wpcf7r-twillio-premium\";}i:14;O:8:\"stdClass\":34:{s:16:\"parent_plugin_id\";s:4:\"9546\";s:12:\"developer_id\";s:5:\"12857\";s:8:\"store_id\";s:4:\"4180\";s:10:\"install_id\";s:7:\"8943348\";s:4:\"slug\";s:12:\"wpcf7r-slack\";s:5:\"title\";s:18:\"Send slack message\";s:11:\"environment\";i:0;s:4:\"icon\";s:99:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9824/icons/bd210d6b81f7600e44af25f632912e5d.png\";s:15:\"default_plan_id\";s:5:\"16791\";s:5:\"plans\";i:16791;s:8:\"features\";N;s:17:\"money_back_period\";N;s:13:\"refund_policy\";N;s:24:\"annual_renewals_discount\";i:10;s:22:\"renewals_discount_type\";s:10:\"percentage\";s:11:\"is_released\";b:1;s:15:\"is_sdk_required\";b:1;s:18:\"is_pricing_visible\";b:1;s:19:\"is_wp_org_compliant\";b:0;s:6:\"is_off\";b:0;s:24:\"is_only_for_new_installs\";b:0;s:14:\"installs_limit\";N;s:19:\"free_releases_count\";i:0;s:22:\"premium_releases_count\";i:1;s:17:\"accepted_payments\";i:0;s:7:\"plan_id\";s:1:\"0\";s:4:\"type\";s:6:\"plugin\";s:9:\"is_static\";b:0;s:10:\"public_key\";s:32:\"pk_4cd7cd394e366889689f3ec1146a4\";s:2:\"id\";s:4:\"9824\";s:7:\"created\";s:19:\"2022-01-31 21:02:53\";s:7:\"updated\";s:19:\"2023-12-10 09:00:46\";s:4:\"info\";O:8:\"stdClass\":13:{s:9:\"plugin_id\";s:4:\"9824\";s:3:\"url\";N;s:11:\"description\";s:56:\"Send a message to your slack channel on every submission\";s:17:\"short_description\";N;s:10:\"banner_url\";s:68:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9824/banner.jpeg\";s:15:\"card_banner_url\";s:73:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9824/card_banner.jpeg\";s:15:\"selling_point_0\";s:56:\"Send a message to your slack channel on every submission\";s:15:\"selling_point_1\";N;s:15:\"selling_point_2\";N;s:11:\"screenshots\";O:8:\"stdClass\":1:{s:12:\"screenshot_0\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/9824/screenshots/0.jpeg\";}s:2:\"id\";s:4:\"2679\";s:7:\"created\";s:19:\"2022-03-04 21:25:37\";s:7:\"updated\";N;}s:12:\"premium_slug\";s:20:\"wpcf7r-slack-premium\";}i:15;O:8:\"stdClass\":34:{s:16:\"parent_plugin_id\";s:4:\"9546\";s:12:\"developer_id\";s:5:\"12857\";s:8:\"store_id\";s:4:\"4180\";s:10:\"install_id\";s:8:\"11349269\";s:4:\"slug\";s:27:\"wpcf7r-eliminate-duplicates\";s:5:\"title\";s:20:\"Eliminate Duplicates\";s:11:\"environment\";i:0;s:4:\"icon\";s:100:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12020/icons/bca1d711da03b2d418f55e008e706627.png\";s:15:\"default_plan_id\";s:5:\"20423\";s:5:\"plans\";i:20423;s:8:\"features\";N;s:17:\"money_back_period\";i:7;s:13:\"refund_policy\";s:6:\"strict\";s:24:\"annual_renewals_discount\";N;s:22:\"renewals_discount_type\";s:10:\"percentage\";s:11:\"is_released\";b:1;s:15:\"is_sdk_required\";b:1;s:18:\"is_pricing_visible\";b:1;s:19:\"is_wp_org_compliant\";b:1;s:6:\"is_off\";b:0;s:24:\"is_only_for_new_installs\";b:0;s:14:\"installs_limit\";N;s:19:\"free_releases_count\";i:0;s:22:\"premium_releases_count\";i:3;s:17:\"accepted_payments\";i:0;s:7:\"plan_id\";s:1:\"0\";s:4:\"type\";s:6:\"plugin\";s:9:\"is_static\";b:0;s:10:\"public_key\";s:32:\"pk_03d1080f5aa780b42ca9a5e77075d\";s:2:\"id\";s:5:\"12020\";s:7:\"created\";s:19:\"2023-02-13 21:00:24\";s:7:\"updated\";s:19:\"2023-12-10 09:00:46\";s:4:\"info\";O:8:\"stdClass\":13:{s:9:\"plugin_id\";s:5:\"12020\";s:3:\"url\";N;s:11:\"description\";N;s:17:\"short_description\";s:31:\"Limit multiple form submissions\";s:10:\"banner_url\";s:69:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12020/banner.jpeg\";s:15:\"card_banner_url\";s:74:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12020/card_banner.jpeg\";s:15:\"selling_point_0\";s:58:\"Limit multiple submissions forms from the same IP address.\";s:15:\"selling_point_1\";s:56:\"Limit multiple submissions by any combination of fields.\";s:15:\"selling_point_2\";s:72:\"Set a time frame in which the user wont be able to submit a second form.\";s:11:\"screenshots\";O:8:\"stdClass\":1:{s:12:\"screenshot_0\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12020/screenshots/0.png\";}s:2:\"id\";s:4:\"3350\";s:7:\"created\";s:19:\"2023-02-13 23:31:56\";s:7:\"updated\";N;}s:12:\"premium_slug\";s:28:\"eliminate-duplicates-premium\";}i:16;O:8:\"stdClass\":34:{s:16:\"parent_plugin_id\";s:4:\"9546\";s:12:\"developer_id\";s:5:\"12857\";s:8:\"store_id\";s:4:\"4180\";s:10:\"install_id\";s:8:\"11848297\";s:4:\"slug\";s:15:\"multi-step-form\";s:5:\"title\";s:15:\"Multi Step Form\";s:11:\"environment\";i:0;s:4:\"icon\";s:101:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12446/icons/e7ca286375ae14916912b61b5e83c93e.jpeg\";s:15:\"default_plan_id\";s:5:\"21069\";s:5:\"plans\";i:21069;s:8:\"features\";N;s:17:\"money_back_period\";N;s:13:\"refund_policy\";N;s:24:\"annual_renewals_discount\";N;s:22:\"renewals_discount_type\";s:10:\"percentage\";s:11:\"is_released\";b:1;s:15:\"is_sdk_required\";b:1;s:18:\"is_pricing_visible\";b:1;s:19:\"is_wp_org_compliant\";b:0;s:6:\"is_off\";b:0;s:24:\"is_only_for_new_installs\";b:0;s:14:\"installs_limit\";N;s:19:\"free_releases_count\";i:0;s:22:\"premium_releases_count\";i:2;s:17:\"accepted_payments\";i:0;s:7:\"plan_id\";s:1:\"0\";s:4:\"type\";s:6:\"plugin\";s:9:\"is_static\";b:0;s:10:\"public_key\";s:32:\"pk_5b6f73cca1ea5bfc1c81c0e57187f\";s:2:\"id\";s:5:\"12446\";s:7:\"created\";s:19:\"2023-04-11 12:53:20\";s:7:\"updated\";s:19:\"2023-12-11 22:16:21\";s:4:\"info\";O:8:\"stdClass\":13:{s:9:\"plugin_id\";s:5:\"12446\";s:3:\"url\";s:66:\"https://redirection-for-contact-form7.com/product/multi-step-form/\";s:11:\"description\";N;s:17:\"short_description\";N;s:10:\"banner_url\";s:69:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12446/banner.jpeg\";s:15:\"card_banner_url\";s:74:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12446/card_banner.jpeg\";s:15:\"selling_point_0\";s:29:\"Easily create multistep forms\";s:15:\"selling_point_1\";N;s:15:\"selling_point_2\";N;s:11:\"screenshots\";O:8:\"stdClass\":2:{s:12:\"screenshot_0\";s:76:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12446/screenshots/0.jpeg\";s:12:\"screenshot_2\";s:76:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12446/screenshots/2.jpeg\";}s:2:\"id\";s:4:\"3464\";s:7:\"created\";s:19:\"2023-04-12 07:42:05\";s:7:\"updated\";s:19:\"2023-04-12 08:04:15\";}s:12:\"premium_slug\";s:22:\"wpcf7r-multi-step-form\";}i:17;O:8:\"stdClass\":34:{s:16:\"parent_plugin_id\";s:4:\"9546\";s:12:\"developer_id\";s:5:\"12857\";s:8:\"store_id\";s:4:\"4180\";s:10:\"install_id\";s:8:\"11929993\";s:4:\"slug\";s:18:\"monday-integration\";s:5:\"title\";s:18:\"Monday Integration\";s:11:\"environment\";i:0;s:4:\"icon\";s:101:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12516/icons/d352e460590906948a8db3374054eb5e.jpeg\";s:15:\"default_plan_id\";s:5:\"21158\";s:5:\"plans\";i:21158;s:8:\"features\";N;s:17:\"money_back_period\";i:30;s:13:\"refund_policy\";s:6:\"strict\";s:24:\"annual_renewals_discount\";i:10;s:22:\"renewals_discount_type\";s:10:\"percentage\";s:11:\"is_released\";b:1;s:15:\"is_sdk_required\";b:1;s:18:\"is_pricing_visible\";b:1;s:19:\"is_wp_org_compliant\";b:0;s:6:\"is_off\";b:0;s:24:\"is_only_for_new_installs\";b:0;s:14:\"installs_limit\";N;s:19:\"free_releases_count\";i:0;s:22:\"premium_releases_count\";i:6;s:17:\"accepted_payments\";i:0;s:7:\"plan_id\";s:1:\"0\";s:4:\"type\";s:6:\"plugin\";s:9:\"is_static\";b:0;s:10:\"public_key\";s:32:\"pk_db378fcc4056228190315e47ba62f\";s:2:\"id\";s:5:\"12516\";s:7:\"created\";s:19:\"2023-04-20 22:02:25\";s:7:\"updated\";s:19:\"2023-12-23 10:13:52\";s:4:\"info\";O:8:\"stdClass\":13:{s:9:\"plugin_id\";s:5:\"12516\";s:3:\"url\";N;s:11:\"description\";s:1296:\"With Monday Integration Add-on, you can easily connect your Contact Form 7 forms to Monday.com and automatically create items or tasks in your Monday.com boards or projects when a form is submitted. This add-on eliminates the need for manual data entry and streamlines your workflow, making it more efficient and error-free.\n\nThe features of Monday Integration Add-on may include:\n\nAutomatic creation of items or tasks in Monday.com when a Contact Form 7 form is submitted, based on predefined mapping of form fields to Monday.com fields.\nCustomizable mapping of Contact Form 7 form fields to Monday.com fields, allowing you to map form data to the relevant fields in your Monday.com boards or projects.\nWith Conditional logic of actions Add-on - Support for multiple Monday.com boards or projects, allowing you to send form submissions to different boards or projects based on your requirements.\n\nEasy setup and configuration through a user-friendly interface, allowing you to set up the integration without any coding knowledge.\n\nIn summary, Monday Integration Add-on is a powerful tool that enables seamless integration between Contact Form 7 and Monday.com, saving you time and effort by automating the process of capturing form data and transferring it to your Monday.com boards or projects.\";s:17:\"short_description\";s:133:\"Easily connect your Contact Form 7 forms to Monday.com and automatically create items or tasks in your Monday.com boards or projects.\";s:10:\"banner_url\";s:69:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12516/banner.jpeg\";s:15:\"card_banner_url\";s:74:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12516/card_banner.jpeg\";s:15:\"selling_point_0\";s:128:\"Automatic creation of items or tasks in Monday.com when a Contact Form 7 form is submitted, based on predefined mapping of form \";s:15:\"selling_point_1\";s:128:\"Customizable mapping of Contact Form 7 form fields to Monday.com fields, allowing you to map form data to the relevant fields in\";s:15:\"selling_point_2\";s:128:\"Easy setup and configuration through a user-friendly interface, allowing you to set up the integration without any coding knowle\";s:11:\"screenshots\";O:8:\"stdClass\":2:{s:12:\"screenshot_0\";s:76:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12516/screenshots/0.jpeg\";s:12:\"screenshot_2\";s:76:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12516/screenshots/2.jpeg\";}s:2:\"id\";s:4:\"3474\";s:7:\"created\";s:19:\"2023-04-20 22:16:22\";s:7:\"updated\";s:19:\"2023-12-21 18:59:19\";}s:12:\"premium_slug\";s:26:\"monday-integration-premium\";}}}s:7:\"created\";i:1703904407;s:9:\"timestamp\";i:1703990807;}s:53:\"get:/v1/plugins/9546/addons/pricing.json?type=visible\";O:8:\"stdClass\":3:{s:6:\"result\";O:8:\"stdClass\":1:{s:6:\"addons\";a:18:{i:0;O:8:\"stdClass\":2:{s:2:\"id\";i:9547;s:5:\"plans\";a:1:{i:0;O:8:\"stdClass\":23:{s:9:\"plugin_id\";s:4:\"9547\";s:4:\"name\";s:16:\"wpcf7r_cl_single\";s:5:\"title\";s:7:\"General\";s:11:\"description\";N;s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:0;s:25:\"is_block_features_monthly\";b:1;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";i:3;s:23:\"is_require_subscription\";b:1;s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";s:17:\"info@querysol.com\";s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:1;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"16063\";s:7:\"created\";s:19:\"2021-12-17 07:29:19\";s:7:\"updated\";s:19:\"2022-08-05 17:37:58\";s:7:\"pricing\";a:3:{i:0;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16063\";s:8:\"licenses\";i:1;s:13:\"monthly_price\";d:5.99;s:12:\"annual_price\";d:29.9;s:14:\"lifetime_price\";d:139.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17894\";s:7:\"created\";s:19:\"2021-12-17 07:29:56\";s:7:\"updated\";s:19:\"2023-04-20 23:06:51\";s:8:\"currency\";s:3:\"usd\";}i:1;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16063\";s:8:\"licenses\";i:5;s:13:\"monthly_price\";d:7.99;s:12:\"annual_price\";d:79.99;s:14:\"lifetime_price\";d:239.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17898\";s:7:\"created\";s:19:\"2021-12-17 07:32:04\";s:7:\"updated\";s:19:\"2021-12-18 09:00:26\";s:8:\"currency\";s:3:\"usd\";}i:2;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16063\";s:8:\"licenses\";N;s:13:\"monthly_price\";d:9.99;s:12:\"annual_price\";d:99.99;s:14:\"lifetime_price\";d:399.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17899\";s:7:\"created\";s:19:\"2021-12-17 07:32:27\";s:7:\"updated\";s:19:\"2021-12-18 09:01:26\";s:8:\"currency\";s:3:\"usd\";}}}}}i:1;O:8:\"stdClass\":2:{s:2:\"id\";i:9549;s:5:\"plans\";a:1:{i:0;O:8:\"stdClass\":23:{s:9:\"plugin_id\";s:4:\"9549\";s:4:\"name\";s:9:\"wpcf7rapi\";s:5:\"title\";s:7:\"General\";s:11:\"description\";N;s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:0;s:25:\"is_block_features_monthly\";b:1;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";i:3;s:23:\"is_require_subscription\";b:1;s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";s:17:\"info@querysol.com\";s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"16067\";s:7:\"created\";s:19:\"2021-12-17 09:43:44\";s:7:\"updated\";s:19:\"2022-12-12 04:14:03\";s:7:\"pricing\";a:3:{i:0;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16067\";s:8:\"licenses\";i:1;s:13:\"monthly_price\";d:3.99;s:12:\"annual_price\";d:29.9;s:14:\"lifetime_price\";d:139.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17905\";s:7:\"created\";s:19:\"2021-12-17 09:44:11\";s:7:\"updated\";s:19:\"2023-05-02 04:15:04\";s:8:\"currency\";s:3:\"usd\";}i:1;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16067\";s:8:\"licenses\";i:5;s:13:\"monthly_price\";d:7.99;s:12:\"annual_price\";d:79.99;s:14:\"lifetime_price\";d:239.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17906\";s:7:\"created\";s:19:\"2021-12-17 09:44:31\";s:7:\"updated\";s:19:\"2021-12-18 09:00:28\";s:8:\"currency\";s:3:\"usd\";}i:2;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16067\";s:8:\"licenses\";N;s:13:\"monthly_price\";d:9.99;s:12:\"annual_price\";d:99.99;s:14:\"lifetime_price\";d:399.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17907\";s:7:\"created\";s:19:\"2021-12-17 09:45:03\";s:7:\"updated\";s:19:\"2021-12-18 09:01:30\";s:8:\"currency\";s:3:\"usd\";}}}}}i:2;O:8:\"stdClass\":2:{s:2:\"id\";i:9551;s:5:\"plans\";a:1:{i:0;O:8:\"stdClass\":23:{s:9:\"plugin_id\";s:4:\"9551\";s:4:\"name\";s:11:\"wpcf7rpopup\";s:5:\"title\";s:30:\"Contact Form 7 Thank You Popup\";s:11:\"description\";N;s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:0;s:25:\"is_block_features_monthly\";b:0;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";i:3;s:23:\"is_require_subscription\";b:1;s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";N;s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"16070\";s:7:\"created\";s:19:\"2021-12-17 10:16:12\";s:7:\"updated\";s:19:\"2022-01-14 10:01:41\";s:7:\"pricing\";a:3:{i:0;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16070\";s:8:\"licenses\";i:1;s:13:\"monthly_price\";d:4.99;s:12:\"annual_price\";d:19.9;s:14:\"lifetime_price\";d:119.9;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17908\";s:7:\"created\";s:19:\"2021-12-17 10:16:25\";s:7:\"updated\";s:19:\"2022-01-16 06:43:43\";s:8:\"currency\";s:3:\"usd\";}i:1;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16070\";s:8:\"licenses\";i:5;s:13:\"monthly_price\";d:5.99;s:12:\"annual_price\";d:59.99;s:14:\"lifetime_price\";d:179.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17909\";s:7:\"created\";s:19:\"2021-12-17 10:16:50\";s:7:\"updated\";s:19:\"2021-12-18 09:01:04\";s:8:\"currency\";s:3:\"usd\";}i:2;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16070\";s:8:\"licenses\";N;s:13:\"monthly_price\";d:9.99;s:12:\"annual_price\";d:99.99;s:14:\"lifetime_price\";d:399.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17910\";s:7:\"created\";s:19:\"2021-12-17 10:17:23\";s:7:\"updated\";s:19:\"2021-12-18 09:01:55\";s:8:\"currency\";s:3:\"usd\";}}}}}i:3;O:8:\"stdClass\":2:{s:2:\"id\";i:9552;s:5:\"plans\";a:1:{i:0;O:8:\"stdClass\":23:{s:9:\"plugin_id\";s:4:\"9552\";s:4:\"name\";s:15:\"wpcf7rcreatepdf\";s:5:\"title\";s:7:\"General\";s:11:\"description\";N;s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:0;s:25:\"is_block_features_monthly\";b:1;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";i:3;s:23:\"is_require_subscription\";b:1;s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";s:17:\"info@querysol.com\";s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"16072\";s:7:\"created\";s:19:\"2021-12-17 10:42:26\";s:7:\"updated\";s:19:\"2022-08-05 17:38:36\";s:7:\"pricing\";a:3:{i:0;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16072\";s:8:\"licenses\";i:1;s:13:\"monthly_price\";d:5.99;s:12:\"annual_price\";d:29.9;s:14:\"lifetime_price\";d:139.9;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17911\";s:7:\"created\";s:19:\"2021-12-17 10:42:39\";s:7:\"updated\";s:19:\"2022-01-16 06:41:36\";s:8:\"currency\";s:3:\"usd\";}i:1;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16072\";s:8:\"licenses\";i:5;s:13:\"monthly_price\";d:7.99;s:12:\"annual_price\";d:79.99;s:14:\"lifetime_price\";d:239.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17912\";s:7:\"created\";s:19:\"2021-12-17 10:43:02\";s:7:\"updated\";s:19:\"2021-12-18 09:00:23\";s:8:\"currency\";s:3:\"usd\";}i:2;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16072\";s:8:\"licenses\";N;s:13:\"monthly_price\";d:9.99;s:12:\"annual_price\";d:99.99;s:14:\"lifetime_price\";d:399.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17913\";s:7:\"created\";s:19:\"2021-12-17 10:43:30\";s:7:\"updated\";s:19:\"2021-12-18 08:47:07\";s:8:\"currency\";s:3:\"usd\";}}}}}i:4;O:8:\"stdClass\":2:{s:2:\"id\";i:9553;s:5:\"plans\";a:1:{i:0;O:8:\"stdClass\":23:{s:9:\"plugin_id\";s:4:\"9553\";s:4:\"name\";s:12:\"wpcf7rstripe\";s:5:\"title\";s:18:\"Stripe Integration\";s:11:\"description\";N;s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:0;s:25:\"is_block_features_monthly\";b:0;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";i:3;s:23:\"is_require_subscription\";b:1;s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";N;s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"16074\";s:7:\"created\";s:19:\"2021-12-17 11:25:27\";s:7:\"updated\";s:19:\"2022-01-14 10:02:16\";s:7:\"pricing\";a:3:{i:0;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16074\";s:8:\"licenses\";i:1;s:13:\"monthly_price\";d:4.99;s:12:\"annual_price\";d:19.9;s:14:\"lifetime_price\";d:119.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17914\";s:7:\"created\";s:19:\"2021-12-17 11:25:40\";s:7:\"updated\";s:19:\"2023-06-10 20:25:41\";s:8:\"currency\";s:3:\"usd\";}i:1;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16074\";s:8:\"licenses\";i:5;s:13:\"monthly_price\";d:5.99;s:12:\"annual_price\";d:49.99;s:14:\"lifetime_price\";d:179.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17915\";s:7:\"created\";s:19:\"2021-12-17 11:25:51\";s:7:\"updated\";s:19:\"2023-06-10 20:25:43\";s:8:\"currency\";s:3:\"usd\";}i:2;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16074\";s:8:\"licenses\";N;s:13:\"monthly_price\";d:9.99;s:12:\"annual_price\";d:99.99;s:14:\"lifetime_price\";d:399.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17916\";s:7:\"created\";s:19:\"2021-12-17 11:26:14\";s:7:\"updated\";s:19:\"2021-12-18 09:01:57\";s:8:\"currency\";s:3:\"usd\";}}}}}i:5;O:8:\"stdClass\":2:{s:2:\"id\";i:9554;s:5:\"plans\";a:1:{i:0;O:8:\"stdClass\":23:{s:9:\"plugin_id\";s:4:\"9554\";s:4:\"name\";s:13:\"wpcf7rhubspot\";s:5:\"title\";s:7:\"General\";s:11:\"description\";N;s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:0;s:25:\"is_block_features_monthly\";b:0;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";i:3;s:23:\"is_require_subscription\";b:1;s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";N;s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"16076\";s:7:\"created\";s:19:\"2021-12-17 11:44:52\";s:7:\"updated\";s:19:\"2022-01-14 10:00:01\";s:7:\"pricing\";a:3:{i:0;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16076\";s:8:\"licenses\";i:1;s:13:\"monthly_price\";d:5.99;s:12:\"annual_price\";d:29.9;s:14:\"lifetime_price\";d:99.9;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17917\";s:7:\"created\";s:19:\"2021-12-17 11:45:02\";s:7:\"updated\";s:19:\"2022-01-16 06:42:38\";s:8:\"currency\";s:3:\"usd\";}i:1;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16076\";s:8:\"licenses\";i:5;s:13:\"monthly_price\";d:7.99;s:12:\"annual_price\";d:79.99;s:14:\"lifetime_price\";d:239.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17918\";s:7:\"created\";s:19:\"2021-12-17 11:45:25\";s:7:\"updated\";s:19:\"2021-12-18 09:00:30\";s:8:\"currency\";s:3:\"usd\";}i:2;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16076\";s:8:\"licenses\";N;s:13:\"monthly_price\";d:9.99;s:12:\"annual_price\";d:99.99;s:14:\"lifetime_price\";d:399.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17919\";s:7:\"created\";s:19:\"2021-12-17 11:45:44\";s:7:\"updated\";s:19:\"2021-12-18 09:01:32\";s:8:\"currency\";s:3:\"usd\";}}}}}i:6;O:8:\"stdClass\":2:{s:2:\"id\";i:9555;s:5:\"plans\";a:1:{i:0;O:8:\"stdClass\":23:{s:9:\"plugin_id\";s:4:\"9555\";s:4:\"name\";s:16:\"wpcf7rsalesforce\";s:5:\"title\";s:22:\"Salesforce Integration\";s:11:\"description\";N;s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:0;s:25:\"is_block_features_monthly\";b:1;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";i:3;s:23:\"is_require_subscription\";b:1;s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";N;s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"16078\";s:7:\"created\";s:19:\"2021-12-17 12:30:34\";s:7:\"updated\";s:19:\"2022-08-05 17:38:11\";s:7:\"pricing\";a:3:{i:0;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16078\";s:8:\"licenses\";i:1;s:13:\"monthly_price\";d:5.99;s:12:\"annual_price\";d:29.9;s:14:\"lifetime_price\";d:139.9;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17920\";s:7:\"created\";s:19:\"2021-12-17 12:30:45\";s:7:\"updated\";s:19:\"2022-01-16 06:44:09\";s:8:\"currency\";s:3:\"usd\";}i:1;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16078\";s:8:\"licenses\";i:5;s:13:\"monthly_price\";d:7.99;s:12:\"annual_price\";d:79.99;s:14:\"lifetime_price\";d:239.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17921\";s:7:\"created\";s:19:\"2021-12-17 12:31:08\";s:7:\"updated\";s:19:\"2021-12-18 09:00:36\";s:8:\"currency\";s:3:\"usd\";}i:2;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16078\";s:8:\"licenses\";N;s:13:\"monthly_price\";d:9.99;s:12:\"annual_price\";d:99.99;s:14:\"lifetime_price\";d:399.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17922\";s:7:\"created\";s:19:\"2021-12-17 12:31:29\";s:7:\"updated\";s:19:\"2021-12-18 09:01:38\";s:8:\"currency\";s:3:\"usd\";}}}}}i:7;O:8:\"stdClass\":2:{s:2:\"id\";i:9556;s:5:\"plans\";a:1:{i:0;O:8:\"stdClass\":23:{s:9:\"plugin_id\";s:4:\"9556\";s:4:\"name\";s:16:\"wpcf7rcreatepost\";s:5:\"title\";s:7:\"General\";s:11:\"description\";N;s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:0;s:25:\"is_block_features_monthly\";b:1;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";i:3;s:23:\"is_require_subscription\";b:1;s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";N;s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"16080\";s:7:\"created\";s:19:\"2021-12-17 16:44:51\";s:7:\"updated\";s:19:\"2022-08-05 17:38:42\";s:7:\"pricing\";a:3:{i:0;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16080\";s:8:\"licenses\";i:1;s:13:\"monthly_price\";d:3.99;s:12:\"annual_price\";d:19.9;s:14:\"lifetime_price\";d:89.9;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17923\";s:7:\"created\";s:19:\"2021-12-17 16:45:06\";s:7:\"updated\";s:19:\"2022-01-16 06:42:00\";s:8:\"currency\";s:3:\"usd\";}i:1;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16080\";s:8:\"licenses\";i:5;s:13:\"monthly_price\";d:5.99;s:12:\"annual_price\";d:59.99;s:14:\"lifetime_price\";d:179.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17924\";s:7:\"created\";s:19:\"2021-12-17 16:45:17\";s:7:\"updated\";s:19:\"2021-12-18 09:00:54\";s:8:\"currency\";s:3:\"usd\";}i:2;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16080\";s:8:\"licenses\";N;s:13:\"monthly_price\";d:9.99;s:12:\"annual_price\";d:99.99;s:14:\"lifetime_price\";d:399.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17925\";s:7:\"created\";s:19:\"2021-12-17 16:45:37\";s:7:\"updated\";s:19:\"2021-12-18 09:01:44\";s:8:\"currency\";s:3:\"usd\";}}}}}i:8;O:8:\"stdClass\":2:{s:2:\"id\";i:9557;s:5:\"plans\";a:1:{i:0;O:8:\"stdClass\":23:{s:9:\"plugin_id\";s:4:\"9557\";s:4:\"name\";s:18:\"wpcf7rcustomerrors\";s:5:\"title\";s:18:\"Custom Validations\";s:11:\"description\";N;s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:0;s:25:\"is_block_features_monthly\";b:1;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";i:3;s:23:\"is_require_subscription\";b:1;s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";N;s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"16083\";s:7:\"created\";s:19:\"2021-12-17 18:08:30\";s:7:\"updated\";s:19:\"2022-08-05 17:38:49\";s:7:\"pricing\";a:3:{i:0;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16083\";s:8:\"licenses\";i:1;s:13:\"monthly_price\";d:4.99;s:12:\"annual_price\";d:19.9;s:14:\"lifetime_price\";d:89.9;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17926\";s:7:\"created\";s:19:\"2021-12-17 18:08:38\";s:7:\"updated\";s:19:\"2022-01-16 06:42:16\";s:8:\"currency\";s:3:\"usd\";}i:1;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16083\";s:8:\"licenses\";i:5;s:13:\"monthly_price\";d:5.99;s:12:\"annual_price\";d:59.99;s:14:\"lifetime_price\";d:179.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17927\";s:7:\"created\";s:19:\"2021-12-17 18:08:52\";s:7:\"updated\";s:19:\"2021-12-18 09:00:56\";s:8:\"currency\";s:3:\"usd\";}i:2;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16083\";s:8:\"licenses\";N;s:13:\"monthly_price\";d:9.99;s:12:\"annual_price\";d:99.99;s:14:\"lifetime_price\";d:399.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17928\";s:7:\"created\";s:19:\"2021-12-17 18:09:15\";s:7:\"updated\";s:19:\"2021-12-18 09:01:46\";s:8:\"currency\";s:3:\"usd\";}}}}}i:9;O:8:\"stdClass\":2:{s:2:\"id\";i:9559;s:5:\"plans\";a:1:{i:0;O:8:\"stdClass\":23:{s:9:\"plugin_id\";s:4:\"9559\";s:4:\"name\";s:15:\"wpcf7rmailchimp\";s:5:\"title\";s:7:\"General\";s:11:\"description\";N;s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:0;s:25:\"is_block_features_monthly\";b:0;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";i:3;s:23:\"is_require_subscription\";b:1;s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";N;s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"16086\";s:7:\"created\";s:19:\"2021-12-17 19:34:19\";s:7:\"updated\";s:19:\"2022-01-14 10:01:12\";s:7:\"pricing\";a:3:{i:0;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16086\";s:8:\"licenses\";i:1;s:13:\"monthly_price\";d:4.99;s:12:\"annual_price\";d:19.9;s:14:\"lifetime_price\";d:89.9;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17931\";s:7:\"created\";s:19:\"2021-12-17 19:34:31\";s:7:\"updated\";s:19:\"2022-01-16 06:43:12\";s:8:\"currency\";s:3:\"usd\";}i:1;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16086\";s:8:\"licenses\";i:5;s:13:\"monthly_price\";d:5.99;s:12:\"annual_price\";d:59.99;s:14:\"lifetime_price\";d:179.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17932\";s:7:\"created\";s:19:\"2021-12-17 19:35:03\";s:7:\"updated\";s:19:\"2021-12-18 09:01:01\";s:8:\"currency\";s:3:\"usd\";}i:2;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16086\";s:8:\"licenses\";N;s:13:\"monthly_price\";d:9.99;s:12:\"annual_price\";d:99.99;s:14:\"lifetime_price\";d:399.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17933\";s:7:\"created\";s:19:\"2021-12-17 19:35:26\";s:7:\"updated\";s:19:\"2021-12-18 09:01:52\";s:8:\"currency\";s:3:\"usd\";}}}}}i:10;O:8:\"stdClass\":2:{s:2:\"id\";i:9560;s:5:\"plans\";a:1:{i:0;O:8:\"stdClass\":23:{s:9:\"plugin_id\";s:4:\"9560\";s:4:\"name\";s:11:\"wpcf7rlogin\";s:5:\"title\";s:7:\"General\";s:11:\"description\";N;s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:0;s:25:\"is_block_features_monthly\";b:0;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";i:3;s:23:\"is_require_subscription\";b:1;s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";N;s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"16088\";s:7:\"created\";s:19:\"2021-12-17 19:47:32\";s:7:\"updated\";s:19:\"2022-01-14 10:00:46\";s:7:\"pricing\";a:3:{i:0;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16088\";s:8:\"licenses\";i:1;s:13:\"monthly_price\";d:4.99;s:12:\"annual_price\";d:19.9;s:14:\"lifetime_price\";d:89.9;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17934\";s:7:\"created\";s:19:\"2021-12-17 19:47:41\";s:7:\"updated\";s:19:\"2022-01-16 06:42:56\";s:8:\"currency\";s:3:\"usd\";}i:1;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16088\";s:8:\"licenses\";i:5;s:13:\"monthly_price\";d:5.99;s:12:\"annual_price\";d:59.99;s:14:\"lifetime_price\";d:179.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17935\";s:7:\"created\";s:19:\"2021-12-17 19:47:49\";s:7:\"updated\";s:19:\"2021-12-18 09:00:58\";s:8:\"currency\";s:3:\"usd\";}i:2;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16088\";s:8:\"licenses\";N;s:13:\"monthly_price\";d:9.99;s:12:\"annual_price\";d:99.99;s:14:\"lifetime_price\";d:399.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17936\";s:7:\"created\";s:19:\"2021-12-17 19:48:08\";s:7:\"updated\";s:19:\"2021-12-18 09:01:50\";s:8:\"currency\";s:3:\"usd\";}}}}}i:11;O:8:\"stdClass\":2:{s:2:\"id\";i:9564;s:5:\"plans\";a:1:{i:0;O:8:\"stdClass\":23:{s:9:\"plugin_id\";s:4:\"9564\";s:4:\"name\";s:23:\"wpcf7r_register_general\";s:5:\"title\";s:7:\"General\";s:11:\"description\";N;s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:0;s:25:\"is_block_features_monthly\";b:0;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";i:3;s:23:\"is_require_subscription\";b:1;s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";N;s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"16095\";s:7:\"created\";s:19:\"2021-12-18 07:23:51\";s:7:\"updated\";s:19:\"2022-01-14 10:01:53\";s:7:\"pricing\";a:3:{i:0;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16095\";s:8:\"licenses\";i:1;s:13:\"monthly_price\";d:5.99;s:12:\"annual_price\";d:29.9;s:14:\"lifetime_price\";d:139.9;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17941\";s:7:\"created\";s:19:\"2021-12-18 07:23:58\";s:7:\"updated\";s:19:\"2022-01-16 06:43:57\";s:8:\"currency\";s:3:\"usd\";}i:1;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16095\";s:8:\"licenses\";i:5;s:13:\"monthly_price\";d:7.99;s:12:\"annual_price\";d:79.99;s:14:\"lifetime_price\";d:239.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17942\";s:7:\"created\";s:19:\"2021-12-18 07:24:08\";s:7:\"updated\";s:19:\"2021-12-18 09:00:40\";s:8:\"currency\";s:3:\"usd\";}i:2;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16095\";s:8:\"licenses\";N;s:13:\"monthly_price\";d:9.99;s:12:\"annual_price\";d:99.99;s:14:\"lifetime_price\";d:399.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17943\";s:7:\"created\";s:19:\"2021-12-18 07:24:28\";s:7:\"updated\";s:19:\"2021-12-18 09:01:41\";s:8:\"currency\";s:3:\"usd\";}}}}}i:12;O:8:\"stdClass\":2:{s:2:\"id\";i:9565;s:5:\"plans\";a:1:{i:0;O:8:\"stdClass\":23:{s:9:\"plugin_id\";s:4:\"9565\";s:4:\"name\";s:21:\"wpcf7r_paypal_general\";s:5:\"title\";s:7:\"General\";s:11:\"description\";N;s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:0;s:25:\"is_block_features_monthly\";b:0;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";i:3;s:23:\"is_require_subscription\";b:1;s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";N;s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"16097\";s:7:\"created\";s:19:\"2021-12-18 07:40:38\";s:7:\"updated\";s:19:\"2022-01-14 10:01:31\";s:7:\"pricing\";a:3:{i:0;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16097\";s:8:\"licenses\";i:1;s:13:\"monthly_price\";d:5.99;s:12:\"annual_price\";d:29.9;s:14:\"lifetime_price\";d:139.9;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17944\";s:7:\"created\";s:19:\"2021-12-18 07:40:45\";s:7:\"updated\";s:19:\"2022-01-16 06:43:28\";s:8:\"currency\";s:3:\"usd\";}i:1;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16097\";s:8:\"licenses\";i:5;s:13:\"monthly_price\";d:7.99;s:12:\"annual_price\";d:79.99;s:14:\"lifetime_price\";d:239.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17945\";s:7:\"created\";s:19:\"2021-12-18 07:40:56\";s:7:\"updated\";s:19:\"2021-12-18 09:00:34\";s:8:\"currency\";s:3:\"usd\";}i:2;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16097\";s:8:\"licenses\";N;s:13:\"monthly_price\";d:9.99;s:12:\"annual_price\";d:99.99;s:14:\"lifetime_price\";d:399.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17946\";s:7:\"created\";s:19:\"2021-12-18 07:41:16\";s:7:\"updated\";s:19:\"2021-12-18 09:01:35\";s:8:\"currency\";s:3:\"usd\";}}}}}i:13;O:8:\"stdClass\":2:{s:2:\"id\";i:9592;s:5:\"plans\";a:1:{i:0;O:8:\"stdClass\":23:{s:9:\"plugin_id\";s:4:\"9592\";s:4:\"name\";s:13:\"wpcf7r_twilio\";s:5:\"title\";s:20:\"Send sms with twilio\";s:11:\"description\";N;s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:0;s:25:\"is_block_features_monthly\";b:0;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";i:3;s:23:\"is_require_subscription\";b:1;s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";N;s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:1;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"16146\";s:7:\"created\";s:19:\"2021-12-25 15:12:39\";s:7:\"updated\";s:19:\"2022-01-14 10:02:29\";s:7:\"pricing\";a:3:{i:0;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16146\";s:8:\"licenses\";i:1;s:13:\"monthly_price\";d:4.99;s:12:\"annual_price\";d:19.9;s:14:\"lifetime_price\";d:99.9;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17996\";s:7:\"created\";s:19:\"2021-12-25 15:12:50\";s:7:\"updated\";s:19:\"2022-01-16 06:44:39\";s:8:\"currency\";s:3:\"usd\";}i:1;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16146\";s:8:\"licenses\";i:5;s:13:\"monthly_price\";d:5.99;s:12:\"annual_price\";d:59.99;s:14:\"lifetime_price\";d:179.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17997\";s:7:\"created\";s:19:\"2021-12-25 15:13:40\";s:7:\"updated\";s:19:\"2021-12-25 15:13:58\";s:8:\"currency\";s:3:\"usd\";}i:2;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16146\";s:8:\"licenses\";N;s:13:\"monthly_price\";d:9.99;s:12:\"annual_price\";d:99.99;s:14:\"lifetime_price\";d:399.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17998\";s:7:\"created\";s:19:\"2021-12-25 15:14:13\";s:7:\"updated\";s:19:\"2021-12-25 15:14:22\";s:8:\"currency\";s:3:\"usd\";}}}}}i:14;O:8:\"stdClass\":2:{s:2:\"id\";i:9824;s:5:\"plans\";a:1:{i:0;O:8:\"stdClass\":23:{s:9:\"plugin_id\";s:4:\"9824\";s:4:\"name\";s:10:\"wpcf7slack\";s:5:\"title\";s:7:\"General\";s:11:\"description\";N;s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:0;s:25:\"is_block_features_monthly\";b:0;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";i:3;s:23:\"is_require_subscription\";b:1;s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";N;s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"16791\";s:7:\"created\";s:19:\"2022-03-04 21:26:13\";s:7:\"updated\";s:19:\"2022-03-04 21:27:54\";s:7:\"pricing\";a:3:{i:0;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16791\";s:8:\"licenses\";i:1;s:13:\"monthly_price\";d:5.99;s:12:\"annual_price\";d:29.99;s:14:\"lifetime_price\";d:89.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"18832\";s:7:\"created\";s:19:\"2022-03-04 21:26:21\";s:7:\"updated\";s:19:\"2022-03-04 21:26:40\";s:8:\"currency\";s:3:\"usd\";}i:1;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16791\";s:8:\"licenses\";i:5;s:13:\"monthly_price\";d:9.99;s:12:\"annual_price\";d:95.99;s:14:\"lifetime_price\";d:289.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"18833\";s:7:\"created\";s:19:\"2022-03-04 21:26:44\";s:7:\"updated\";s:19:\"2022-03-04 21:27:00\";s:8:\"currency\";s:3:\"usd\";}i:2;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"16791\";s:8:\"licenses\";N;s:13:\"monthly_price\";d:19.99;s:12:\"annual_price\";d:129.99;s:14:\"lifetime_price\";d:389.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"18834\";s:7:\"created\";s:19:\"2022-03-04 21:27:01\";s:7:\"updated\";s:19:\"2022-03-04 21:27:29\";s:8:\"currency\";s:3:\"usd\";}}}}}i:15;O:8:\"stdClass\":2:{s:2:\"id\";i:12020;s:5:\"plans\";a:1:{i:0;O:8:\"stdClass\":23:{s:9:\"plugin_id\";s:5:\"12020\";s:4:\"name\";s:25:\"wpcf7eliminatesubmissions\";s:5:\"title\";s:12:\"General plan\";s:11:\"description\";N;s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:1;s:25:\"is_block_features_monthly\";b:1;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";i:10;s:23:\"is_require_subscription\";b:1;s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";N;s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:1;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"20423\";s:7:\"created\";s:19:\"2023-02-13 23:32:30\";s:7:\"updated\";s:19:\"2023-02-13 23:34:11\";s:7:\"pricing\";a:3:{i:0;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"20423\";s:8:\"licenses\";i:1;s:13:\"monthly_price\";d:5.99;s:12:\"annual_price\";d:19.9;s:14:\"lifetime_price\";d:69.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"23500\";s:7:\"created\";s:19:\"2023-02-13 23:32:39\";s:7:\"updated\";s:19:\"2023-06-10 20:23:46\";s:8:\"currency\";s:3:\"usd\";}i:1;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"20423\";s:8:\"licenses\";i:5;s:13:\"monthly_price\";d:14.99;s:12:\"annual_price\";d:49.9;s:14:\"lifetime_price\";d:179.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"23501\";s:7:\"created\";s:19:\"2023-02-13 23:33:02\";s:7:\"updated\";s:19:\"2023-06-10 20:23:49\";s:8:\"currency\";s:3:\"usd\";}i:2;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"20423\";s:8:\"licenses\";N;s:13:\"monthly_price\";d:39.99;s:12:\"annual_price\";d:189.99;s:14:\"lifetime_price\";d:399.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"23502\";s:7:\"created\";s:19:\"2023-02-13 23:33:24\";s:7:\"updated\";s:19:\"2023-02-13 23:34:02\";s:8:\"currency\";s:3:\"usd\";}}}}}i:16;O:8:\"stdClass\":2:{s:2:\"id\";i:12446;s:5:\"plans\";a:1:{i:0;O:8:\"stdClass\":23:{s:9:\"plugin_id\";s:5:\"12446\";s:4:\"name\";s:19:\"wpcf7rmultistepform\";s:5:\"title\";s:7:\"General\";s:11:\"description\";N;s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:1;s:25:\"is_block_features_monthly\";b:1;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";i:7;s:23:\"is_require_subscription\";b:1;s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";N;s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:1;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"21069\";s:7:\"created\";s:19:\"2023-04-11 12:55:34\";s:7:\"updated\";s:19:\"2023-04-11 12:57:17\";s:7:\"pricing\";a:3:{i:0;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"21069\";s:8:\"licenses\";i:1;s:13:\"monthly_price\";d:3.99;s:12:\"annual_price\";d:19.9;s:14:\"lifetime_price\";d:59.9;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"24440\";s:7:\"created\";s:19:\"2023-04-11 12:55:51\";s:7:\"updated\";s:19:\"2023-04-11 12:56:20\";s:8:\"currency\";s:3:\"usd\";}i:1;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"21069\";s:8:\"licenses\";i:5;s:13:\"monthly_price\";d:9.99;s:12:\"annual_price\";d:59.9;s:14:\"lifetime_price\";d:299.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"24442\";s:7:\"created\";s:19:\"2023-04-11 12:56:31\";s:7:\"updated\";s:19:\"2023-04-12 07:59:53\";s:8:\"currency\";s:3:\"usd\";}i:2;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"21069\";s:8:\"licenses\";N;s:13:\"monthly_price\";d:26.99;s:12:\"annual_price\";d:99.9;s:14:\"lifetime_price\";d:779.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"24441\";s:7:\"created\";s:19:\"2023-04-11 12:56:25\";s:7:\"updated\";s:19:\"2023-04-12 07:59:57\";s:8:\"currency\";s:3:\"usd\";}}}}}i:17;O:8:\"stdClass\":2:{s:2:\"id\";i:12516;s:5:\"plans\";a:1:{i:0;O:8:\"stdClass\":23:{s:9:\"plugin_id\";s:5:\"12516\";s:4:\"name\";s:23:\"wpcf7rmondayintegration\";s:5:\"title\";s:7:\"General\";s:11:\"description\";N;s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:1;s:25:\"is_block_features_monthly\";b:1;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";i:7;s:23:\"is_require_subscription\";b:1;s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";N;s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:1;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"21158\";s:7:\"created\";s:19:\"2023-04-20 22:17:07\";s:7:\"updated\";s:19:\"2023-04-20 22:19:36\";s:7:\"pricing\";a:3:{i:0;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"21158\";s:8:\"licenses\";i:1;s:13:\"monthly_price\";d:4.99;s:12:\"annual_price\";d:19.9;s:14:\"lifetime_price\";d:69.9;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"24527\";s:7:\"created\";s:19:\"2023-04-20 22:17:18\";s:7:\"updated\";s:19:\"2023-06-10 20:28:56\";s:8:\"currency\";s:3:\"usd\";}i:1;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"21158\";s:8:\"licenses\";i:5;s:13:\"monthly_price\";d:12.99;s:12:\"annual_price\";d:49.99;s:14:\"lifetime_price\";d:179.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"24528\";s:7:\"created\";s:19:\"2023-04-20 22:18:19\";s:7:\"updated\";s:19:\"2023-06-10 20:28:59\";s:8:\"currency\";s:3:\"usd\";}i:2;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"21158\";s:8:\"licenses\";N;s:13:\"monthly_price\";d:33.99;s:12:\"annual_price\";d:149.99;s:14:\"lifetime_price\";d:449.99;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"24529\";s:7:\"created\";s:19:\"2023-04-20 22:18:37\";s:7:\"updated\";s:19:\"2023-06-10 20:27:32\";s:8:\"currency\";s:3:\"usd\";}}}}}}}s:7:\"created\";i:1697723779;s:9:\"timestamp\";i:1697810179;}}','no'),(196,'royal_elementor_addons_activation_time','1670335343','yes'),(197,'royal_elementor_addons_activation_time_for_sale','1670335343','yes'),(198,'elementor_cpt_support','a:3:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:13:\"wpr_templates\";}','yes'),(200,'_elementor_installed_time','1670335358','yes'),(201,'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 & 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 & 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 & 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 & 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 & 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 & 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 & 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 & 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 & 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 & Fitness Equipment – eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"Online Shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s: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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 & Beauty – Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/spa-beauty-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s: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 – Health & Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s: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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – Health & Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s: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 – 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 – 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 & Moving Company – Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/packing-moving-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"Moving\",\"Storge\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s: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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – Health & Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s: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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 & Cat Food Delivery – Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s: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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – Health & Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s: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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – Health & Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s: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 – 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 – 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 – 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 – 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 – 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 – 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 – 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’s Optometrist – Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s: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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – App Service – Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s: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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – Thank You Page – Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s: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 – 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 – Thank You Page – Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s: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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – Chef’s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s: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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – B&W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/photography-bw-portraits/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s: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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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 – 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'),(202,'elementor_remote_info_feed_data','a:3:{i:0;a:5:{s:5:\"title\";s:69:\"Elementor\'s 2023 Black Friday Sale: The Deals You\'ve Been Waiting For\";s:7:\"excerpt\";s:152:\"Why settle for less when you can unlock the full power of Elementor? This Black Friday, we\'re offering deals so good, they\'ll make you do a double-take.\";s:7:\"created\";i:1700561623;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:130:\"https://elementor.com/blog/black-friday-cyber-monday-2023/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:86:\"New in Elementor 3.17 - Enhance Visitor Experience With AJAX, Faster Websites and More\";s:7:\"excerpt\";s:173:\"Elementor 3.17 introduces AJAX Loading for Loop Grids, improves image loading speed, adds the ability to access past prompts and content generated by Elementor AI, and more.\";s:7:\"created\";i:1698835967;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:150:\"https://elementor.com/blog/elementor-317-loop-grid-ajax-loading-rating-widget/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:73:\"Elementor 3.16 - Faster Performance, Flexible Design, and more Accessible\";s:7:\"excerpt\";s:210:\"Elementor 3.16 activates Flexbox Containers by default for new websites, improves site loading speed with performance enhancements, increases accessibility for visitors who use assistive technologies, and more.\";s:7:\"created\";i:1695134049;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:152:\"https://elementor.com/blog/316-faster-performance-flexible-design-accessibility/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(211,'wpcf7','a:2:{s:7:\"version\";s:5:\"5.8.1\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1670335432;s:7:\"version\";s:5:\"5.6.4\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(213,'action_scheduler_hybrid_store_demarkation','7','yes'),(214,'schema-ActionScheduler_StoreSchema','7.0.1697719579','yes'),(215,'schema-ActionScheduler_LoggerSchema','3.0.1670335437','yes'),(218,'woocommerce_schema_version','430','yes'),(219,'woocommerce_store_address','','yes'),(220,'woocommerce_store_address_2','','yes'),(221,'woocommerce_store_city','','yes'),(222,'woocommerce_default_country','ZA:FS','yes'),(223,'woocommerce_store_postcode','','yes'),(224,'woocommerce_allowed_countries','all','yes'),(225,'woocommerce_all_except_countries','a:0:{}','yes'),(226,'woocommerce_specific_allowed_countries','a:0:{}','yes'),(227,'woocommerce_ship_to_countries','','yes'),(228,'woocommerce_specific_ship_to_countries','a:0:{}','yes'),(229,'woocommerce_default_customer_address','base','yes'),(230,'woocommerce_calc_taxes','no','yes'),(231,'woocommerce_enable_coupons','yes','yes'),(232,'woocommerce_calc_discounts_sequentially','no','no'),(233,'woocommerce_currency','ZAR','yes'),(234,'woocommerce_currency_pos','left','yes'),(235,'woocommerce_price_thousand_sep',',','yes'),(236,'woocommerce_price_decimal_sep','.','yes'),(237,'woocommerce_price_num_decimals','2','yes'),(238,'woocommerce_shop_page_id','1680','yes'),(239,'woocommerce_cart_redirect_after_add','no','yes'),(240,'woocommerce_enable_ajax_add_to_cart','yes','yes'),(241,'woocommerce_placeholder_image','7','yes'),(242,'woocommerce_weight_unit','kg','yes'),(243,'woocommerce_dimension_unit','cm','yes'),(244,'woocommerce_enable_reviews','yes','yes'),(245,'woocommerce_review_rating_verification_label','yes','no'),(246,'woocommerce_review_rating_verification_required','no','no'),(247,'woocommerce_enable_review_rating','yes','yes'),(248,'woocommerce_review_rating_required','yes','no'),(249,'woocommerce_manage_stock','yes','yes'),(250,'woocommerce_hold_stock_minutes','60','no'),(251,'woocommerce_notify_low_stock','yes','no'),(252,'woocommerce_notify_no_stock','yes','no'),(253,'woocommerce_stock_email_recipient','info@demo.com','no'),(254,'woocommerce_notify_low_stock_amount','2','no'),(255,'woocommerce_notify_no_stock_amount','0','yes'),(256,'woocommerce_hide_out_of_stock_items','no','yes'),(257,'woocommerce_stock_format','','yes'),(258,'woocommerce_file_download_method','force','no'),(259,'woocommerce_downloads_redirect_fallback_allowed','no','no'),(260,'woocommerce_downloads_require_login','no','no'),(261,'woocommerce_downloads_grant_access_after_payment','yes','no'),(262,'woocommerce_downloads_deliver_inline','','no'),(263,'woocommerce_downloads_add_hash_to_filename','yes','yes'),(265,'woocommerce_attribute_lookup_direct_updates','no','yes'),(266,'woocommerce_prices_include_tax','no','yes'),(267,'woocommerce_tax_based_on','shipping','yes'),(268,'woocommerce_shipping_tax_class','inherit','yes'),(269,'woocommerce_tax_round_at_subtotal','no','yes'),(270,'woocommerce_tax_classes','','yes'),(271,'woocommerce_tax_display_shop','excl','yes'),(272,'woocommerce_tax_display_cart','excl','yes'),(273,'woocommerce_price_display_suffix','','yes'),(274,'woocommerce_tax_total_display','itemized','no'),(275,'woocommerce_enable_shipping_calc','yes','no'),(276,'woocommerce_shipping_cost_requires_address','no','yes'),(277,'woocommerce_ship_to_destination','billing','no'),(278,'woocommerce_shipping_debug_mode','no','yes'),(279,'woocommerce_enable_guest_checkout','yes','no'),(280,'woocommerce_enable_checkout_login_reminder','no','no'),(281,'woocommerce_enable_signup_and_login_from_checkout','no','no'),(282,'woocommerce_enable_myaccount_registration','no','no'),(283,'woocommerce_registration_generate_username','yes','no'),(284,'woocommerce_registration_generate_password','yes','no'),(285,'woocommerce_erasure_request_removes_order_data','no','no'),(286,'woocommerce_erasure_request_removes_download_data','no','no'),(287,'woocommerce_allow_bulk_remove_personal_data','no','no'),(288,'woocommerce_registration_privacy_policy_text','Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].','yes'),(289,'woocommerce_checkout_privacy_policy_text','Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].','yes'),(290,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(291,'woocommerce_trash_pending_orders','','no'),(292,'woocommerce_trash_failed_orders','','no'),(293,'woocommerce_trash_cancelled_orders','','no'),(294,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(295,'woocommerce_email_from_name','SubscriptionFlow Demo','no'),(296,'woocommerce_email_from_address','info@demo.com','no'),(297,'woocommerce_email_header_image','','no'),(298,'woocommerce_email_footer_text','{site_title} — Built with {WooCommerce}','no'),(299,'woocommerce_email_base_color','#7f54b3','no'),(300,'woocommerce_email_background_color','#f7f7f7','no'),(301,'woocommerce_email_body_background_color','#ffffff','no'),(302,'woocommerce_email_text_color','#3c3c3c','no'),(303,'woocommerce_merchant_email_notifications','no','no'),(304,'woocommerce_cart_page_id','1678','no'),(305,'woocommerce_checkout_page_id','1679','no'),(306,'woocommerce_myaccount_page_id','2108','no'),(307,'woocommerce_terms_page_id','','no'),(308,'woocommerce_checkout_pay_endpoint','order-pay','yes'),(309,'woocommerce_checkout_order_received_endpoint','order-received','yes'),(310,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(311,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(312,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(313,'woocommerce_myaccount_orders_endpoint','orders','yes'),(314,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),(315,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(316,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),(317,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),(318,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),(319,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),(320,'woocommerce_logout_endpoint','customer-logout','yes'),(321,'woocommerce_api_enabled','no','yes'),(322,'woocommerce_allow_tracking','no','no'),(323,'woocommerce_show_marketplace_suggestions','yes','no'),(324,'woocommerce_analytics_enabled','yes','yes'),(325,'woocommerce_navigation_enabled','no','yes'),(326,'woocommerce_feature_custom_order_tables_enabled','no','yes'),(327,'woocommerce_single_image_width','600','yes'),(328,'woocommerce_thumbnail_image_width','300','yes'),(329,'woocommerce_checkout_highlight_required_fields','yes','yes'),(330,'woocommerce_demo_store','no','no'),(331,'wc_downloads_approved_directories_mode','enabled','yes'),(332,'woocommerce_permalinks','a:5:{s:12:\"product_base\";s:7:\"product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}','yes'),(333,'current_theme_supports_woocommerce','yes','yes'),(334,'woocommerce_queue_flush_rewrite_rules','no','yes'),(337,'default_product_cat','15','yes'),(340,'woocommerce_paypal_settings','a:23:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:6:\"PayPal\";s:11:\"description\";s:85:\"Pay via PayPal; you can pay with your credit card if you don\'t have a PayPal account.\";s:5:\"email\";s:13:\"info@demo.com\";s:8:\"advanced\";s:0:\"\";s:8:\"testmode\";s:2:\"no\";s:5:\"debug\";s:2:\"no\";s:16:\"ipn_notification\";s:3:\"yes\";s:14:\"receiver_email\";s:13:\"info@demo.com\";s:14:\"identity_token\";s:0:\"\";s:14:\"invoice_prefix\";s:3:\"WC-\";s:13:\"send_shipping\";s:3:\"yes\";s:16:\"address_override\";s:2:\"no\";s:13:\"paymentaction\";s:4:\"sale\";s:9:\"image_url\";s:0:\"\";s:11:\"api_details\";s:0:\"\";s:12:\"api_username\";s:0:\"\";s:12:\"api_password\";s:0:\"\";s:13:\"api_signature\";s:0:\"\";s:20:\"sandbox_api_username\";s:0:\"\";s:20:\"sandbox_api_password\";s:0:\"\";s:21:\"sandbox_api_signature\";s:0:\"\";s:12:\"_should_load\";s:2:\"no\";}','yes'),(341,'woocommerce_version','8.2.1','yes'),(342,'woocommerce_db_version','7.3.0','yes'),(343,'woocommerce_admin_install_timestamp','1670335439','yes'),(344,'woocommerce_inbox_variant_assignment','12','yes'),(348,'_transient_jetpack_autoloader_plugin_paths','a:1:{i:0;s:29:\"{{WP_PLUGIN_DIR}}/woocommerce\";}','yes'),(349,'action_scheduler_lock_async-request-runner','659fe349dab0e3.85373053|1704977285','yes'),(350,'woocommerce_admin_notices','a:1:{i:0;s:6:\"update\";}','yes'),(351,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"0tYwbyInQxf0FOmI5Tz192u1QYKEYEtR\";}','yes'),(352,'_transient_woocommerce_webhook_ids_status_active','a:0:{}','yes'),(353,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(354,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(355,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(356,'widget_woocommerce_price_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(357,'widget_woocommerce_product_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(358,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(359,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(360,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(361,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(362,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(363,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(364,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(368,'_transient_timeout_woocommerce_admin_remote_inbox_notifications_specs','1705587736','no'); INSERT INTO `wp_options` VALUES (369,'_transient_woocommerce_admin_remote_inbox_notifications_specs','a:1:{s:5:\"en_US\";a:60:{s:21:\"wayflyer_bnpl_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:21:\"wayflyer_bnpl_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:48:\"Grow your business with funding through Wayflyer\";s:7:\"content\";s:261:\"Fast, flexible financing to boost cash flow and help your business grow – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store’s performance, Wayflyer provides funding and analytical insights to invest in your business.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"wayflyer_bnpl_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Level up with funding\";}}s:3:\"url\";s:110:\"https://woo.com/products/wayflyer/?utm_source=inbox_note&utm_medium=product&utm_campaign=wayflyer_bnpl_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-17 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-12-18 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AU\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"BE\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"IE\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"NL\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"GB\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-affirm\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:32:\"afterpay-gateway-for-woocommerce\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-payments-for-woocommerce\";}}}}}}s:35:\"wc_shipping_mobile_app_usps_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:94:\"Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App\";s:7:\"content\";s:202:\"Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woo.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Get WooCommerce Shipping\";}}s:3:\"url\";s:127:\"https://woo.com/woocommerce-shipping/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_usps_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-12 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-11-27 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:25:\"woocommerce-shipping-usps\";}}i:4;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}}}s:20:\"woocommerce-services\";O:8:\"stdClass\":8:{s:4:\"slug\";s:20:\"woocommerce-services\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"WooCommerce Shipping & Tax\";s:7:\"content\";s:251:\"WooCommerce Shipping & Tax helps get your store \"ready to sell\" as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:84:\"https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:17:25\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:18:\"your-first-product\";O:8:\"stdClass\":8:{s:4:\"slug\";s:18:\"your-first-product\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:18:\"Your first product\";s:7:\"content\";s:459:\"That’s huge! You’re well on your way to building a successful online store — now it’s time to think about how you’ll fulfill your orders.<br/><br/>Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woo.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:122:\"https://woo.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:13\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_were_no_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_are_now_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:2:\">=\";s:5:\"value\";i:1;}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_types\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"physical\";s:7:\"default\";a:0:{}}}}s:37:\"wc-admin-optimizing-the-checkout-flow\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-optimizing-the-checkout-flow\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:28:\"Optimizing the checkout flow\";s:7:\"content\";s:177:\"It’s crucial to get your store’s checkout as smooth as possible to avoid losing sales. Let’s take a look at how you can optimize the checkout experience for your shoppers.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"optimizing-the-checkout-flow\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:136:\"https://woo.com/posts/optimizing-woocommerce-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=optimizing-the-checkout-flow\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:49\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"payments\";s:7:\"default\";a:0:{}}}}s:32:\"wc-payments-qualitative-feedback\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"wc-payments-qualitative-feedback\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Payments setup - let us know what you think\";s:7:\"content\";s:146:\"Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"qualitative-feedback-from-new-users\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:39:\"https://automattic.survey.fm/wc-pay-new\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:13\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:20:\"woocommerce-payments\";s:7:\"default\";a:0:{}}}}s:29:\"share-your-feedback-on-paypal\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"share-your-feedback-on-paypal\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:29:\"Share your feedback on PayPal\";s:7:\"content\";s:127:\"Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:43:\"http://automattic.survey.fm/paypal-feedback\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:50\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}}}s:31:\"google_listings_and_ads_install\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"google_listings_and_ads_install\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Drive traffic and sales with Google\";s:7:\"content\";s:123:\"Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"get-started\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Get started\";}}s:3:\"url\";s:114:\"https://woo.com/products/google-listings-and-ads?utm_source=inbox_note&utm_medium=product&utm_campaign=get-started\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-06-09 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google_listings_and_ads\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:10;}}}s:39:\"wc-subscriptions-security-update-3-0-15\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-subscriptions-security-update-3-0-15\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:42:\"WooCommerce Subscriptions security update!\";s:7:\"content\";s:722:\"We recently released an important security update to WooCommerce Subscriptions. To ensure your site’s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br/><br/>Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woo.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br/><br/>We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br/><br/>If you have any questions we are here to help — just <a href=\"https://woo.com/my-account/create-a-ticket/\">open a ticket</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"update-wc-subscriptions-3-0-15\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"View latest version\";}}s:3:\"url\";s:30:\"&page=wc-addons§ion=helper\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:30:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:6:\"3.0.15\";}}}s:29:\"woocommerce-core-update-5-4-0\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"woocommerce-core-update-5-4-0\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Update to WooCommerce 5.4.1 now\";s:7:\"content\";s:140:\"WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"update-wc-core-5-4-0\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:25:\"How to update WooCommerce\";}}s:3:\"url\";s:64:\"https://docs.woocommerce.com/document/how-to-update-woocommerce/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:31:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.0\";}}}s:19:\"wcpay-promo-2020-11\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-11\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-11\";s:7:\"content\";s:19:\"wcpay-promo-2020-11\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:19:\"wcpay-promo-2020-12\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-12\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-12\";s:7:\"content\";s:19:\"wcpay-promo-2020-12\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:34:\"ppxo-pps-upgrade-paypal-payments-1\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-1\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:47:\"Get the latest PayPal extension for WooCommerce\";s:7:\"content\";s:434:\"Heads up! There’s a new PayPal on the block!<br/><br/>Now is a great time to upgrade to our latest <a href=\"https://woo.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br/><br/>Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-1\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:33:53\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:7;s:7:\"default\";i:1;s:9:\"operation\";s:1:\"<\";}}}s:34:\"ppxo-pps-upgrade-paypal-payments-2\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-2\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Upgrade your PayPal experience!\";s:7:\"content\";s:350:\"Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br /><br />Start using our <a href=\"https://woo.com/products/woocommerce-paypal-payments/\" target=\"_blank\">latest PayPal today</a> to continue to receive support and updates.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-2\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:34:30\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:6;s:7:\"default\";i:1;s:9:\"operation\";s:1:\">\";}}}s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:56:\"Action required: Critical vulnerabilities in WooCommerce\";s:7:\"content\";s:574:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:129:\"https://woo.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:59:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.6\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.8\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.9\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.6\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.2\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.3\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.4\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.4\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.5\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.2\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.4\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.3\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.3\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.4\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.2\";}i:32;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.3\";}i:33;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.4\";}i:34;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:35;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:36;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:37;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.3\";}i:38;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}i:39;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"3.5.10\";}i:40;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.7\";}i:41;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.3\";}i:42;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.3\";}i:43;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.5\";}i:44;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.4\";}i:45;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.4\";}i:46;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.5\";}i:47;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.6\";}i:48;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.4\";}i:49;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.5\";}i:50;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.5\";}i:51;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.4\";}i:52;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.3\";}i:53;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.5\";}i:54;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.3\";}i:55;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.3\";}i:56;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.5\";}i:57;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.3\";}i:58;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.4\";}}}s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"Action required: Critical vulnerabilities in WooCommerce Blocks\";s:7:\"content\";s:570:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/>Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br/><br/>For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:129:\"https://woo.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:32:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:42\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"2.5.16\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.6.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.7.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.8.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.9.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.0.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.1.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.1\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.1\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}}}s:45:\"woocommerce-core-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woocommerce-core-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"Solved: Critical vulnerabilities patched in WooCommerce\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:129:\"https://woo.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:18\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:23:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.6\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.8\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.9\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.2\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.2\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.1\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:62:\"Solved: Critical vulnerabilities patched in WooCommerce Blocks\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:129:\"https://woo.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:54\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:31:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"2.5.16\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.7.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.8.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.9.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.0.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.1.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.1\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.1\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.2\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.2\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.1\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:19:\"habit-moment-survey\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"habit-moment-survey\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"We’re all ears! Share your experience so far with WooCommerce\";s:7:\"content\";s:136:\"We’d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:45:\"https://automattic.survey.fm/store-management\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:37:30\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:30;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:0;}}}s:42:\"woocommerce-core-paypal-march-2022-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:383:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy PayPal Standard security updates for stores running WooCommerce (version 3.5 to 6.3). It’s recommended to disable PayPal Standard, and use <a href=\"https://woo.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal Payments</a> to accept PayPal.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-core-paypal-march-2022-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:44:57\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:3:\"5.5\";}i:1;a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}}}}}}}s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:237:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:45:04\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}s:24:\"pinterest_03_2022_update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:24:\"pinterest_03_2022_update\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"Your Pinterest for WooCommerce plugin is out of date!\";s:7:\"content\";s:262:\"Update to the latest version of Pinterest for WooCommerce to continue using this plugin and keep your store connected with Pinterest. To update, visit <strong>Plugins > Installed Plugins</strong>, and click on “update now” under Pinterest for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"pinterest_03_2022_update\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"Update Instructions\";}}s:3:\"url\";s:140:\"https://woo.com/document/pinterest-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=pinterest_03_2022_update#section-3\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-23 00:00:39\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"pinterest-for-woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"1.0.8\";}}}s:33:\"store_setup_survey_survey_q2_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:33:\"store_setup_survey_survey_q2_2022\";s:4:\"type\";s:6:\"survey\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:30:\"How is your store setup going?\";s:7:\"content\";s:232:\"Our goal is to make sure you have all the right tools to start setting up your store in the smoothest way possible.\r\nWe’d love to know if we hit our mark and how we can improve. To collect your thoughts, we made a 2-minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:53:\"store_setup_survey_survey_q2_2022_share_your_thoughts\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Tell us how it’s going\";}}s:3:\"url\";s:52:\"https://automattic.survey.fm/store-setup-survey-2022\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-05-09 08:42:10\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:7;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:9;}}}s:47:\"woocommerce-payments-august-2022-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-payments-august-2022-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:51:\"Action required: Please update WooCommerce Payments\";s:7:\"content\";s:213:\"An updated secure version of WooCommerce Payments is available – please ensure that you’re using the latest patch version. For more information on what action you need to take, please review the article below.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Find out more\";}}s:3:\"url\";s:96:\"https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:9:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-08-09 14:44:17\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"3.9\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"4.5.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.1\";}}}s:46:\"woocommerce-payments-august-2022-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-payments-august-2022-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:51:\"WooCommerce Payments has been automatically updated\";s:7:\"content\";s:265:\"You’re now running the latest secure version of WooCommerce Payments. We’ve worked with the WordPress Plugins team to deploy a security update to stores running WooCommerce Payments (version 3.9 to 4.5). For further information, please review the article below.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Find out more\";}}s:3:\"url\";s:96:\"https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-08-09 14:41:13\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:47:\"woocommerce-payments-august-2022-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.4\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.3\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.1\";}}}}}s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:58:\"Security vulnerability patched in WooCommerce Eway Gateway\";s:7:\"content\";s:323:\"In response to a potential vulnerability identified in WooCommerce Eway Gateway versions 3.1.0 to 3.5.0, we’ve worked to deploy security fixes and have released an updated version.\r\nNo external exploits have been detected, but we recommend you update to your latest supported version 3.1.26, 3.2.3, 3.3.1, 3.4.6, or 3.5.1\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:62:\"needs-update-eway-payment-gateway-rin-action-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:16:\"/update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:63:\"needs-update-eway-payment-gateway-rin-dismiss-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:7:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-03 23:45:53\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"3.1.26\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.6\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"3.5.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"3.1.0\";}}}s:43:\"updated-eway-payment-gateway-rin-2022-12-20\";O:8:\"stdClass\":8:{s:4:\"slug\";s:43:\"updated-eway-payment-gateway-rin-2022-12-20\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Eway Gateway has been automatically updated\";s:7:\"content\";s:280:\"Your store is now running the latest secure version of WooCommerce Eway Gateway. We worked with the WordPress Plugins team to deploy a software update to stores running WooCommerce Eway Gateway (versions 3.1.0 to 3.5.0) in response to a security vulnerability that was discovered.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:57:\"updated-eway-payment-gateway-rin-action-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"See all updates\";}}s:3:\"url\";s:16:\"/update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"updated-eway-payment-gateway-rin-dismiss-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-03 23:45:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:5:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.1.26\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.3\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}}}}}s:31:\"ecomm-wc-navigation-survey-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"ecomm-wc-navigation-survey-2023\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:39:\"Navigating WooCommerce on WordPress.com\";s:7:\"content\";s:166:\"We are improving the WooCommerce navigation on WordPress.com and would love your help to make it better! Please share your experience with us in this 2-minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:32:\"share-navigation-survey-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:58:\"https://automattic.survey.fm/new-ecommerce-plan-navigation\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-01-16 09:53:44\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:12:\"is_ecommerce\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:180;}}}s:39:\"woopay-beta-merchantrecruitment-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"woopay-beta-merchantrecruitment-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:319:\"WooPay, a new express checkout feature built into WooCommerce Payments, is <b>now available</b> —and we’re inviting you to be one of the first to try it. \r\n<br><br>\r\n<b>Boost conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\r\n<br><br>\r\n<b>Get started in seconds.</b>\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:48:\"woopay-beta-merchantrecruitment-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-activate-learnmore-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:147:\"https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-activate-learnmore-04MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:27\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.handinhandparenting.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://pritikinfoods.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://utahrecsports.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.hunterpta.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.smokinbeans.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://shulabeauty.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bingeworthytvmerch.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://s91.4d8.myftpupload.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://stephanienicolenorris.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://aliensshirt.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://libertyordeathapparelllc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://cowboystatedaily.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:42:\"https://fundrgear.com/beckendorffathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:50:\"http://wordpress-528155-2231771.cloudwaysapps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://checkout.sohaprice.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://amadozstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://eliwehbe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://lunabra.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://nptixx.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://louisianapantry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://aplusanatomy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://wildsvg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://bleachfilm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://benabeautyspa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:47:\"http://barrettfitnessenterprises.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://goabroadable.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://alexoathletica.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.fourpurls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.hagmannreport.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://busybeeorganics.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nallsproduce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://bigtimebats.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://shop.cookingwithkarli.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.queenofpeacemedia.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://bigjohnsbeefjerky.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://paperbyjaney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://carolinarisemembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://veroticaevents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://spira.farm\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://endlessassist.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://betterlifeblog.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://ashleighrenard.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.turkeymerck.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://carfiershop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://normanmusicfestival.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://www.olfactoryfactoryllc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://fundrgear.com/anthonyathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"http://tkechilifestdotcom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://pvsa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://becbatop.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wwmeconvention.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://lswmp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bubbaskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://fusango.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://vcdpostershow.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.rileysribz.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.fakeultrasound.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://onelongfellowsquare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://agodpod.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/littleladybulldogs\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://thecirclelarp.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://byletam.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.nachonite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://designerdab.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2151.temp.domains/~lovebyt2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://shortporchbaseballcompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://distancecme.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://middleswarthchips.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://railblazausa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://mikescountrymeats.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://www.woodenshoe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://rockspringscafe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"http://footballfangears.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://ybtoner.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://simplyclayyy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://naturecreation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://marisrodriguez.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://asanteinternational.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://theatre55.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://carolynscreativeclassroom.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.miiriya.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://trendyds.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wooedbythefood.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://papasteamstores.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://omdurags.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://happydogbarkery.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://kitbose.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://seamossdeals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://zeatala.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://shop.atwaterffa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://www.brettsfirstresponders.org/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://shirtactive.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://boerneparade.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://zorahshrine.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://davidcervenka.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://addisjourney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://305ycle.cc\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"http://yourworstnightmarehaunt.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://westcoastpreps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://checkout.sohaking.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://www.theunshakeablepundit.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.stellaandchewys.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.raywhitcomb.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"http://constellationtheatercompany.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://stacynguyen.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:46:\"https://fundrgear.com/lakecreekgirlsbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://winslowartcenter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://flufftastik.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mygreenbeach.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://ebookvip.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/needvillevolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bifocalmedia.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://clrc.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://hyperpins.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/lakecreekboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://fundrgear.com/kparktennis\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mogadorspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://fundrgear.com/newcaneytrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://sigmascents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://bsharisemoore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://morrflate.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://westbrosinc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://shop.danceplexaz.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://chikepod.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.advanahealth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://tatter.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://greatawakeningbrewing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://waterfowlfestival.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://preppedwellness.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://events.thus.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://stormtide.thefifthtrooper.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.tabsynth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"http://staging.fliptheswitchon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://duffysdough.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodieliving.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://breakerbrotherstcg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://andymation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://recklessmetals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://sophielark.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://wp.arabtherapy.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://creativeappliques.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://altitude.win\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:42:\"woocommerce-wcpay-march-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-wcpay-march-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:57:\"Action required: Security update for WooCommerce Payments\";s:7:\"content\";s:296:\"<strong>Your store requires a security update for WooCommerce Payments</strong>. Please update to the latest version of WooCommerce Payments immediately to address a potential vulnerability discovered on March 22. For more information on how to update, visit this WooCommerce Developer Blog Post.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:49:\"woocommerce-wcpay-march-2023-update-needed-button\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"See Blog Post\";}}s:3:\"url\";s:122:\"https://developer.woocommerce.com/2023/03/23/critical-vulnerability-detected-in-woocommerce-payments-what-you-need-to-know\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:57:\"woocommerce-wcpay-march-2023-update-needed-dismiss-button\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:11:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-03-22 20:25:44\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.5.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"4.8.0\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"5.6.1\";}}}s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:52:\"Accept in-person contactless payments on your iPhone\";s:7:\"content\";s:230:\"Tap to Pay on iPhone and WooCommerce Payments is quick, secure, and simple to set up — no extra terminals or card readers are needed. Accept contactless debit and credit cards, Apple Pay, and other NFC digital wallets in person.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:20:\"Simplify my payments\";}}s:3:\"url\";s:135:\"https://woo.com/products/woocommerce-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q2_2023_no_wcpay\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-03 23:59:47\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}s:48:\"woocommerce-WCPreOrders-april-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-WCPreOrders-april-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:68:\"Action required: Security update of WooCommerce Pre-Orders extension\";s:7:\"content\";s:220:\"<strong>Your store requires a security update for the WooCommerce Pre-Orders extension</strong>. Please update the WooCommerce Pre-Orders extension immediately to address a potential vulnerability discovered on April 11.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"extension-settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:15:\"update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-12 22:16:37\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:22:\"woocommerce-pre-orders\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.0.0\";}}}s:46:\"woopay-beta-merchantrecruitment-update-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woopay-beta-merchantrecruitment-update-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:321:\"WooPay, a new express checkout feature built into WooCommerce Payments, is <b>now available</b> — and you’re invited to try it. \r\n<br /><br />\r\n<b>Boost conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\r\n<br /><br />\r\n<b>Update WooCommerce Payments</b> to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:52:\"woopay-beta-merchantrecruitment-update-WCPay-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:55:\"woopay-beta-merchantrecruitment-update-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.handinhandparenting.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://pritikinfoods.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://utahrecsports.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.hunterpta.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.smokinbeans.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://shulabeauty.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bingeworthytvmerch.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://s91.4d8.myftpupload.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://stephanienicolenorris.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://aliensshirt.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://libertyordeathapparelllc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://cowboystatedaily.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:42:\"https://fundrgear.com/beckendorffathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:50:\"http://wordpress-528155-2231771.cloudwaysapps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://checkout.sohaprice.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://amadozstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://eliwehbe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://lunabra.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://nptixx.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://louisianapantry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://aplusanatomy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://wildsvg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://bleachfilm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://benabeautyspa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:47:\"http://barrettfitnessenterprises.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://goabroadable.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://alexoathletica.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.fourpurls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.hagmannreport.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://busybeeorganics.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nallsproduce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://bigtimebats.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://shop.cookingwithkarli.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.queenofpeacemedia.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://bigjohnsbeefjerky.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://paperbyjaney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://carolinarisemembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://veroticaevents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://spira.farm\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://endlessassist.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://betterlifeblog.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://ashleighrenard.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.turkeymerck.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://carfiershop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://normanmusicfestival.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://www.olfactoryfactoryllc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://fundrgear.com/anthonyathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"http://tkechilifestdotcom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://pvsa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://becbatop.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wwmeconvention.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://lswmp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bubbaskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://fusango.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://vcdpostershow.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.rileysribz.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.fakeultrasound.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://onelongfellowsquare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://agodpod.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/littleladybulldogs\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://thecirclelarp.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://byletam.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.nachonite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://designerdab.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2151.temp.domains/~lovebyt2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://shortporchbaseballcompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://distancecme.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://middleswarthchips.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://railblazausa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://mikescountrymeats.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://www.woodenshoe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://rockspringscafe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"http://footballfangears.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://ybtoner.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://simplyclayyy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://naturecreation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://marisrodriguez.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://asanteinternational.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://theatre55.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://carolynscreativeclassroom.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.miiriya.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://trendyds.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wooedbythefood.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://papasteamstores.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://omdurags.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://happydogbarkery.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://kitbose.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://seamossdeals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://zeatala.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://shop.atwaterffa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://www.brettsfirstresponders.org/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://shirtactive.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://boerneparade.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://zorahshrine.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://davidcervenka.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://addisjourney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://305ycle.cc\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"http://yourworstnightmarehaunt.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://westcoastpreps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://checkout.sohaking.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://www.theunshakeablepundit.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.stellaandchewys.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.raywhitcomb.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"http://constellationtheatercompany.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://stacynguyen.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:46:\"https://fundrgear.com/lakecreekgirlsbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://winslowartcenter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://flufftastik.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mygreenbeach.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://ebookvip.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/needvillevolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bifocalmedia.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://clrc.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://hyperpins.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/lakecreekboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://fundrgear.com/kparktennis\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mogadorspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://fundrgear.com/newcaneytrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://sigmascents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://bsharisemoore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://morrflate.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://westbrosinc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://shop.danceplexaz.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://chikepod.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.advanahealth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://tatter.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://greatawakeningbrewing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://waterfowlfestival.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://preppedwellness.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://events.thus.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://stormtide.thefifthtrooper.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.tabsynth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"http://staging.fliptheswitchon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://duffysdough.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodieliving.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://breakerbrotherstcg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://andymation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://recklessmetals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://sophielark.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://wp.arabtherapy.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://creativeappliques.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://altitude.win\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:46:\"woopay-beta-existingmerchants-noaction-27APR23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woopay-beta-existingmerchants-noaction-27APR23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:15:\"WooPay is back!\";s:7:\"content\";s:361:\"Thanks for previously trying WooPay, the<b> express checkout feature</b> built into WooCommerce Payments. We’re excited to announce that <b>WooPay availability has resumed</b>. No action is required on your part.\r\n<br /><br />\r\nYou can now <b>continue boosting conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-existingmerchants-noaction-documentation-27APR23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Documentation\";}}s:3:\"url\";s:170:\"https://woo.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-existingmerchants-noaction-documentation-27APR23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-26 19:00:23\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.0\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:38:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://store.startingstrongman.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://joacreativelab.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.pureskincaresalon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mariablaquier.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://getprodigital.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://dalefrickeholsters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://sstour.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://tk-txstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://humanspiritproject.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://viradadrums.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://rosariumblends.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://organicskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://stuckpigmedical.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.seattlegiftbasket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.cloverandviolet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gvscholarship.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://yesimadiva.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://www.old.jmtrashbgone.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://victorialansford.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://craftcosplay.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://thefossilexchange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nextgenspeed.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cappellarecords.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://ontimesupermarket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://new2knox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://lovestudiollc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://socceruniformkits.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://willowcreativ.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://summitprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://howda.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://soapavenuecompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://subsbox.mystagingwebsite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wifflebreakers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.mps-outfitters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://howardharrisassociates.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bettersaferadio.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://bunnyluna.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:44:\"woopay-beta-existingmerchants-update-27APR23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"woopay-beta-existingmerchants-update-27APR23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:15:\"WooPay is back!\";s:7:\"content\";s:368:\"Thanks for previously trying WooPay, the <b>express checkout feature</b> built into WooCommerce Payments. We’re excited to announce that <b>WooPay availability has resumed</b>.\r\n<br /><br />\r\n\r\nUpdate to the latest WooCommerce Payments version to <b>continue boosting conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:50:\"woopay-beta-existingmerchants-update-WCPay-27APR23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-26 19:00:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.0\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:38:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://store.startingstrongman.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://joacreativelab.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.pureskincaresalon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mariablaquier.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://getprodigital.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://dalefrickeholsters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://sstour.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://tk-txstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://humanspiritproject.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://viradadrums.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://rosariumblends.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://organicskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://stuckpigmedical.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.seattlegiftbasket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.cloverandviolet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gvscholarship.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://yesimadiva.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://www.old.jmtrashbgone.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://victorialansford.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://craftcosplay.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://thefossilexchange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nextgenspeed.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cappellarecords.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://ontimesupermarket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://new2knox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://lovestudiollc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://socceruniformkits.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://willowcreativ.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://summitprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://howda.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://soapavenuecompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://subsbox.mystagingwebsite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wifflebreakers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.mps-outfitters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://howardharrisassociates.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bettersaferadio.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://bunnyluna.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:45:\"woopay-beta-merchantrecruitment-short-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woopay-beta-merchantrecruitment-short-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woopay-beta-merchantrecruitment-short-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:64:\"woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:153:\"https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:36\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.bluebeautifly.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://indianrivernatural.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://fouroaksproducts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:14:\"https://acb.la\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://www.sweetpotatoplant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://www.gocaseyourself.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://laugun.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://nebraskadaybyday.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://vintagemarche727.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://kohai.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://gracegaze.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://aliensmeaning.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://myheritagegardens.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://shopmoresport.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://oladino.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://frogjumpstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cagedthundermma.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/mcelwainelementary\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://mgco.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://500gp.io/pay\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://waterglassslimes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://antiqueful.shop/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://deeperkidmin.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/cyspringsboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://houseofminifigs.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2273.temp.domains/~dreambx2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://madebymixture.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://reliabletrash.company\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.daddybutter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://circleqessentials.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://garlicbraids.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://fbdonline.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://galaxysedge.us\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://duckduckbeetfarm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://varsitygraphics.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://jademackenzie.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://kristysketolifestyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://covid19criticalcare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://parkviewprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://rock-fest.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://fillinxsolutions.com/etarix/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://doughremitx.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.montanafiddlecamp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://fococomiccon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://patricendouglas.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://hectue.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://montanamaxbbq.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://smellzoom.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://uptowne.theoandson.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://superbasic.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ppodstore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://kerenzan.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://a13bargains.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://colorgr.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://mindbodysoulcandles.com/Charlotte\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://peaceloveandadhd.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://seymoursmash.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mwtournament.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:43:\"https://fundrgear.com/beckendorffgirlstrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://allswellnyc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://childoftheredwoodsmembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/grandoaksvolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.newhollandrochester.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.purplecatvet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"https://www.mustangmountaincoaster.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.roccanj.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.teerico.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://passportunlimited.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.paladincards20.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://giantshorties.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visualsports.biz\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://thefreakinricanrestaurant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://arequestionscom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://pt.tktxcompanystore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodiechicks.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://nutoshop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://backwoodzhiphop.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://gartapparel.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bodega.badiaspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://rampartrange.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://teeuni.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bearsinthealley.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://vitalbooks.net/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://hair-free-hair-remover.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gangtaynails.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://crochetfoundry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://westcoastbelts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://payment.sundryfiles.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://ccadunkirk.mudhenmama.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://desertsupercup.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://shops-eminem.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://75yearsofracing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://tixpls.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:44:\"http://legacyoutfitters.org/banquet/raffles/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://91170e9fc9.nxcli.io/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://beachwayrentals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://esd.camp\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mfkgamecalls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://1greatce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.luthyouth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://electionintegrityidaho.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://renbundle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://premierseamoss.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://teemart.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/beckendorffgirlsbb\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visiblechild.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ebookvital.me/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://renemarsh.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://www.eventricate.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://transgression.party\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://profadex.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://mxsbattlegrounds.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.poeinbaltimore.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://freefall.gg\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://underthechurchhatblog.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://naksparkle.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"http://bearlyburly.gay/inventory\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.premierboneandjoint.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://farm-2-bowl.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://hollandgrill.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://lividian.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.trainingrange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://sarakepskitchen.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.phoenixyouththeatre.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://drivenarmsco.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://audiobro.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://www.iowaabortionaccessfund.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://findthemenu.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://moderndepot.co\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://granitesupplements.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://healthyrican.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://utest.edsandbox.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://c-pounds.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://littleschoolofsmiths.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://goblinstyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://proper-testing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.cosafoundation.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://farmsteadboxes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://fundraise4books.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://norskenook.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://cajulove.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:52:\"woopay-beta-merchantrecruitment-short-update-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woopay-beta-merchantrecruitment-short-update-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:227:\"Be one of the first to try WooPay, our new express checkout feature. <br><b>Boost conversions</b> by letting customers pay with a <b>single click</b>. <br><br>Update to the latest version of WooCommerce Payments to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-short-update-WCPay-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-update-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:20\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.bluebeautifly.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://indianrivernatural.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://fouroaksproducts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:14:\"https://acb.la\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://www.sweetpotatoplant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://www.gocaseyourself.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://laugun.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://nebraskadaybyday.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://vintagemarche727.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://kohai.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://gracegaze.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://aliensmeaning.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://myheritagegardens.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://shopmoresport.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://oladino.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://frogjumpstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cagedthundermma.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/mcelwainelementary\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://mgco.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://500gp.io/pay\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://waterglassslimes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://antiqueful.shop/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://deeperkidmin.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/cyspringsboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://houseofminifigs.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2273.temp.domains/~dreambx2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://madebymixture.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://reliabletrash.company\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.daddybutter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://circleqessentials.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://garlicbraids.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://fbdonline.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://galaxysedge.us\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://duckduckbeetfarm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://varsitygraphics.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://jademackenzie.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://kristysketolifestyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://covid19criticalcare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://parkviewprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://rock-fest.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://fillinxsolutions.com/etarix/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://doughremitx.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.montanafiddlecamp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://fococomiccon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://patricendouglas.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://hectue.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://montanamaxbbq.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://smellzoom.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://uptowne.theoandson.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://superbasic.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ppodstore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://kerenzan.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://a13bargains.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://colorgr.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://mindbodysoulcandles.com/Charlotte\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://peaceloveandadhd.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://seymoursmash.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mwtournament.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:43:\"https://fundrgear.com/beckendorffgirlstrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://allswellnyc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://childoftheredwoodsmembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/grandoaksvolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.newhollandrochester.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.purplecatvet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"https://www.mustangmountaincoaster.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.roccanj.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.teerico.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://passportunlimited.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.paladincards20.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://giantshorties.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visualsports.biz\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://thefreakinricanrestaurant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://arequestionscom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://pt.tktxcompanystore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodiechicks.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://nutoshop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://backwoodzhiphop.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://gartapparel.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bodega.badiaspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://rampartrange.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://teeuni.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bearsinthealley.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://vitalbooks.net/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://hair-free-hair-remover.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gangtaynails.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://crochetfoundry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://westcoastbelts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://payment.sundryfiles.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://ccadunkirk.mudhenmama.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://desertsupercup.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://shops-eminem.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://75yearsofracing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://tixpls.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:44:\"http://legacyoutfitters.org/banquet/raffles/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://91170e9fc9.nxcli.io/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://beachwayrentals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://esd.camp\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mfkgamecalls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://1greatce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.luthyouth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://electionintegrityidaho.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://renbundle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://premierseamoss.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://teemart.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/beckendorffgirlsbb\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visiblechild.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ebookvital.me/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://renemarsh.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://www.eventricate.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://transgression.party\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://profadex.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://mxsbattlegrounds.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.poeinbaltimore.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://freefall.gg\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://underthechurchhatblog.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://naksparkle.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"http://bearlyburly.gay/inventory\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.premierboneandjoint.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://farm-2-bowl.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://hollandgrill.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://lividian.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.trainingrange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://sarakepskitchen.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.phoenixyouththeatre.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://drivenarmsco.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://audiobro.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://www.iowaabortionaccessfund.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://findthemenu.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://moderndepot.co\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://granitesupplements.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://healthyrican.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://utest.edsandbox.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://c-pounds.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://littleschoolofsmiths.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://goblinstyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://proper-testing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.cosafoundation.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://farmsteadboxes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://fundraise4books.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://norskenook.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://cajulove.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTA\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTA\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test A\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:159:\"https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 00:01:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTB\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTB\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTB\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test B\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:159:\"https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 20:58:43\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTC\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTC\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTC\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test C\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:159:\"https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 21:03:33\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTD\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTD\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTD\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test D\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:159:\"https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 21:32:09\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:45:\"woopay-beta-merchantrecruitment-short-09MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woopay-beta-merchantrecruitment-short-09MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-activate-button-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:72:\"woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:161:\"https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-08 19:18:44\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:17:\"platform_checkout\";}}}s:11:\"option_name\";s:41:\"woocommerce_woocommerce_payments_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"no\";s:7:\"default\";b:0;}i:3;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"data.platform_checkout_eligible\";}}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;s:7:\"default\";b:0;}}}s:52:\"woopay-beta-merchantrecruitment-short-update-09MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woopay-beta-merchantrecruitment-short-update-09MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:227:\"Be one of the first to try WooPay, our new express checkout feature. <br><b>Boost conversions</b> by letting customers pay with a <b>single click</b>. <br><br>Update to the latest version of WooCommerce Payments to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-short-update-WCPay-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-update-activate-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-08 19:45:57\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:17:\"platform_checkout\";}}}s:11:\"option_name\";s:41:\"woocommerce_woocommerce_payments_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"no\";s:7:\"default\";b:0;}i:3;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"data.platform_checkout_eligible\";}}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;s:7:\"default\";b:0;}}}s:44:\"woocommerce-WCstripe-May-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"woocommerce-WCstripe-May-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Action required: Security update of WooCommerce Stripe plugin\";s:7:\"content\";s:183:\"<strong>Your store requires a security update for the WooCommerce Stripe plugin</strong>. Please update the WooCommerce Stripe plugin immediately to address a potential vulnerability.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woocommerce-WCStripe-May-2023-updated-needed-Plugin-Settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:68:\"woocommerce-WCStripe-May-2023-updated-needed-Plugin-Settings-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-31 19:54:10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.0\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"7.4.1\";}}}s:47:\"woocommerce-WCPayments-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-WCPayments-June-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:56:\"Action required: Security update of WooCommerce Payments\";s:7:\"content\";s:187:\"<strong>Your store requires a security update for the WooCommerce Payments plugin</strong>. Please update the WooCommerce Payments plugin immediately to address a potential vulnerability.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:63:\"woocommerce-WCPayments-June-2023-updated-needed-Plugin-Settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:55:\"woocommerce-WCPayments-June-2023-updated-needed-Dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:20:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-06 08:00:52\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"3.2.0\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.3\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.3\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.2\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.4\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.5.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.6.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.7.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.8.2\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.9.1\";}}}s:52:\"woocommerce-WCSubscriptions-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woocommerce-WCSubscriptions-June-2023-updated-needed\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Action required: Security update of WooCommerce Subscriptions\";s:7:\"content\";s:197:\"<strong>Your store requires a security update for the WooCommerce Subscriptions plugin</strong>. Please update the WooCommerce Subscriptions plugin immediately to address a potential vulnerability.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:68:\"woocommerce-WCSubscriptions-June-2023-updated-needed-Plugin-Settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woocommerce-WCSubscriptions-June-2023-updated-needed-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-06 08:00:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"2.1.0\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"5.1.2\";}}}s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:87:\"Action required: Security update of WooCommerce Returns and Warranty Requests extension\";s:7:\"content\";s:270:\"<strong>Your store requires a security update for the Returns and Warranty Requests extension</strong>. Please update to the latest version of the WooCommerce Returns and Warranty Requests extension immediately to address a potential vulnerability discovered on May 31.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-02 23:53:57\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-warranty\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.1.8\";}}}s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:65:\"Action required: Security update of WooCommerce One Page Checkout\";s:7:\"content\";s:232:\"<strong>Your shop requires a security update to address a vulnerability in the WooCommerce One Page Checkout extension</strong>. The fix for this vulnerability was released for this extension on June 13th. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-21 14:05:46\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:29:\"woocommerce-one-page-checkout\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"2.4.0\";}}}s:40:\"woocommerce-WCGC-July-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:40:\"woocommerce-WCGC-July-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:68:\"Action required: Security update of WooCommerce GoCardless Extension\";s:7:\"content\";s:205:\"<strong>Your shop requires a security update to address a vulnerability in the WooCommerce GoCardless extension</strong>. The fix for this vulnerability was released on July 4th. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:40:\"woocommerce-WCGC-July-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:40:\"woocommerce-WCGC-July-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-04 15:36:07\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:30:\"woocommerce-gateway-gocardless\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.5.6\";}}}s:48:\"woocommerce-shipping-fedex-api-outage-2023-07-16\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-shipping-fedex-api-outage-2023-07-16\";s:4:\"type\";s:7:\"warning\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:40:\"Scheduled FedEx API outage — July 2023\";s:7:\"content\";s:277:\"On July 16 there will be a full outage of the FedEx API from 04:00 to 08:00 AM UTC. Due to planned maintenance by FedEx, you\'ll be unable to provide FedEx shipping rates during this time. Follow the link below for more information and recommendations on how to minimize impact.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:117:\"https://woo.com/document/fedex/?utm_medium=product&utm_source=inbox_note&utm_campaign=learn-more#july-2023-api-outage\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-05 18:19:17\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-shipping-fedex\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-07-17 00:00:00\";}}}s:35:\"wcship-2023-07-hazmat-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wcship-2023-07-hazmat-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:87:\"Action required: USPS HAZMAT compliance update for WooCommerce Shipping & Tax extension\";s:7:\"content\";s:251:\"<strong>Your store requires an update for the WooCommerce Shipping extension</strong>. Please update to the latest version of the WooCommerce Shipping & Tax extension immediately to ensure compliance with new USPS HAZMAT rules currently in effect.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"plugin-list\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:23:\"admin.php?page=wc-admin\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-11 20:26:59\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-services\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"2.3.0\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}s:43:\"woocommerce-WCStripe-Aug-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:43:\"woocommerce-WCStripe-Aug-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:62:\"Action required: Security update for WooCommerce Stripe plugin\";s:7:\"content\";s:183:\"<strong>Your shop requires an important security update for the WooCommerce Stripe plugin</strong>. The fix for this vulnerability was released on July 31. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:43:\"woocommerce-WCStripe-Aug-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:16:\"update-core.php?\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-03 05:00:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.6\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"7.4.2\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.3.2\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.4.5\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.5.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.6.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.9.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.0.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.2.2\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.3.2\";}}}}}}}s:46:\"woocommerce-WCStripe-Aug-2023-security-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-WCStripe-Aug-2023-security-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:44:\"Security update of WooCommerce Stripe plugin\";s:7:\"content\";s:144:\"<strong>Your store has been updated to the latest secure version of the WooCommerce Stripe plugin</strong>. This update was released on July 31.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-03 05:00:07\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.3.2\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.4.5\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.5.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.6.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.9.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.0.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.2.2\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.3.2\";}}}}}s:46:\"woocommerce-WooPayments-Aug-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-WooPayments-Aug-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:78:\"Action required: Security update for WooPayments (WooCommerce Payments) plugin\";s:7:\"content\";s:201:\"<strong>Your shop requires an important security update for the WooPayments (WooCommerce Payments) extension</strong>. The fix for this vulnerability was released on July 31. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:46:\"woocommerce-WooPayments-Aug-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:16:\"update-core.php?\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-03 05:00:10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"2.8.0\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"6.2.1\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:17:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.6\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.5\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.4\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}}}}}}}s:49:\"woocommerce-WooPayments-Aug-2023-security-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:49:\"woocommerce-WooPayments-Aug-2023-security-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:60:\"Security update of WooPayments (WooCommerce Payments) plugin\";s:7:\"content\";s:147:\"<strong>Your store has been updated to the more secure version of WooPayments (WooCommerce Payments)</strong>. This update was released on July 31.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-03 05:00:13\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:17:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.6\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.5\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.4\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}}}}}s:24:\"avalara_q3-2023_noAvaTax\";O:8:\"stdClass\":8:{s:4:\"slug\";s:24:\"avalara_q3-2023_noAvaTax\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:40:\"Automatically calculate VAT in real time\";s:7:\"content\";s:284:\"Take the effort out of determining tax rates and sell confidently across borders with automated tax management from Avalara AvaTax— including built-in VAT calculation when you sell into or across the EU and UK. Save time and stay compliant when you let Avalara do the heavy lifting.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"avalara_q3-2023_noAvaTax\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Automate my sales tax\";}}s:3:\"url\";s:123:\"https://woo.com/products/woocommerce-avatax/?utm_source=inbox_note&utm_medium=product&utm_campaign=avalara_q3-2023_noAvaTax\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-08 22:32:23\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-09 23:59:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:18:\"woocommerce-avatax\";}}}}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:30;}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:20:\"total_payments_value\";s:9:\"timeframe\";s:9:\"last_year\";s:5:\"value\";i:100;s:9:\"operation\";s:1:\">\";}}}s:38:\"woo-activation-survey-blockers-22AUG23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:38:\"woo-activation-survey-blockers-22AUG23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:40:\"How can we help you get that first sale?\";s:7:\"content\";s:211:\"Your feedback is vital. Please take a minute to share your experience of setting up your new store and whether anything is preventing you from making those first few sales. Together, we can make Woo even better!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:52:\"woo-activation-survey-blockers-survey-button-22AUG23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Take our short survey\";}}s:3:\"url\";s:54:\"https://woocommerce.survey.fm/getting-started-with-woo\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-22 15:54:58\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:2:\"<=\";s:4:\"days\";i:30;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:1;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";i:0;}}}s:44:\"woocommerce-usermeta-Sept2023-productvendors\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"woocommerce-usermeta-Sept2023-productvendors\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:37:\"Your store requires a security update\";s:7:\"content\";s:339:\"<strong>Your shop needs an update to address a vulnerability in WooCommerce.</strong> The fix was released on Sept 15. Please update WooCommerce to the latest version immediately. <a href=\"https://developer.woocommerce.com/2023/09/16/woocommerce-vulnerability-reintroduced-from-7-0-1/\" />Read our developer update</a> for more information.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:44:\"woocommerce-usermeta-Sept2023-productvendors\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:11:\"plugins.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-09-20 00:50:07\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-product-vendors\";}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"8.1.1\";}}}s:41:\"woocommerce-STRIPE-Oct-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:41:\"woocommerce-STRIPE-Oct-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"Action required: Security update for WooCommerce Stripe Gateway\";s:7:\"content\";s:201:\"<strong>Your shop requires a security update to address a vulnerability in the WooCommerce Stripe Gateway</strong>. The fix for this vulnerability was released on October 17. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:41:\"woocommerce-STRIPE-Oct-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:15:\"update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:36:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-10-18 00:01:58\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"4.5.4\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.6\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.5.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.6.4\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.7.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.8.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.9.2\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.0.2\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.1.2\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.2.2\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.3.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.4.6\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.5.4\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.6.3\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.5.4\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.6.3\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.7.3\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.8.3\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.9.3\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.0.5\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.1.3\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.2.3\";}i:32;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.3.3\";}i:33;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.4.3\";}i:34;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.5.1\";}i:35;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"7.6.1\";}}}s:29:\"amazon-mcf-reviews-2023-12-07\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"amazon-mcf-reviews-2023-12-07\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:36:\"Enjoying Amazon MCF for WooCommerce?\";s:7:\"content\";s:292:\"We\'re Never Settle, the developers behind Amazon MCF for WooCommerce, and would be deeply honored to have your review. Reviews help immensely as other users can learn how MCF can solve their needs too! Not happy or need help? Please reach out for support and we’d love to make things right!\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"amazon-mcf-review-button-2023-12-07\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Leave a review\";}}s:3:\"url\";s:153:\"https://woo.com/products/woocommerce-amazon-fulfillment/?review&utm_source=inbox_note&utm_medium=product&utm_campaign=amazon-mcf-review-button-2023-12-07\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:36:\"amazon-mcf-support-button-2023-12-07\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Request support\";}}s:3:\"url\";s:134:\"https://woo.com/my-account/contact-support/?utm_source=inbox_note&utm_medium=product&utm_campaign=amazon-mcf-support-button-2023-12-07\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-12-06 15:21:27\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:30:\"woocommerce-amazon-fulfillment\";}}}}}}','no'),(370,'wc_remote_inbox_notifications_stored_state','O:8:\"stdClass\":2:{s:22:\"there_were_no_products\";b:1;s:22:\"there_are_now_products\";b:1;}','no'),(371,'wc_blocks_db_schema_version','260','yes'),(373,'_transient_product_query-transient-version','1703769038','yes'),(374,'category_children','a:0:{}','yes'),(375,'elementor_library_category_children','a:0:{}','yes'),(377,'wpr_template_type_children','a:0:{}','yes'),(378,'_transient_product-transient-version','1700575676','yes'),(389,'wpr_header_conditions','{\"user-header-wooshop-v1-header\":[\"global\"]}','yes'),(390,'wpr_footer_conditions','{\"user-footer-wooshop-v1-footer\":[\"global\"]}','yes'),(391,'wpr_product_archive_conditions','{\"user-product_archive-wooshop-v1-shop\":[\"product_archive/products\"],\"user-product_archive-wooshop-v1-product-category-tag\":[\"product_archive/product_cat/all\",\"product_archive/product_tag/all\"]}','yes'),(392,'wpr_product_single_conditions','{\"user-product_single-wooshop-v1-product\":[\"product_single/product\"]}','yes'),(393,'wpr_popup_conditions','{\"user-popup-saas-business-plan\":[\"global\"]}','yes'),(394,'wp_calendar_block_has_published_posts','1','yes'),(416,'_transient_woocommerce_shipping_task_zone_count_transient','0','yes'),(430,'_transient_woocommerce_reports-transient-version','1700842182','yes'),(439,'woocommerce_marketplace_suggestions','a:2:{s:11:\"suggestions\";a:28:{i:0;a:4:{s:4:\"slug\";s:28:\"product-edit-meta-tab-header\";s:7:\"context\";s:28:\"product-edit-meta-tab-header\";s:5:\"title\";s:22:\"Recommended extensions\";s:13:\"allow-dismiss\";b:0;}i:1;a:6:{s:4:\"slug\";s:39:\"product-edit-meta-tab-footer-browse-all\";s:7:\"context\";s:28:\"product-edit-meta-tab-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:56:\"https://woo.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:2;a:9:{s:4:\"slug\";s:46:\"product-edit-mailchimp-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-mailchimp\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:108:\"https://woo.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/mailchimp-for-memberships.svg\";s:5:\"title\";s:25:\"Mailchimp for Memberships\";s:4:\"copy\";s:79:\"Completely automate your email lists by syncing membership changes to Mailchimp\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:59:\"https://woo.com/products/mailchimp-woocommerce-memberships/\";}i:3;a:9:{s:4:\"slug\";s:19:\"product-edit-addons\";s:7:\"product\";s:26:\"woocommerce-product-addons\";s:14:\"show-if-active\";a:2:{i:0;s:25:\"woocommerce-subscriptions\";i:1;s:20:\"woocommerce-bookings\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:98:\"https://woo.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-add-ons.svg\";s:5:\"title\";s:15:\"Product Add-Ons\";s:4:\"copy\";s:93:\"Offer add-ons like gift wrapping, special messages or other special options for your products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:41:\"https://woo.com/products/product-add-ons/\";}i:4;a:9:{s:4:\"slug\";s:46:\"product-edit-woocommerce-subscriptions-gifting\";s:7:\"product\";s:33:\"woocommerce-subscriptions-gifting\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:108:\"https://woo.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/gifting-for-subscriptions.svg\";s:5:\"title\";s:25:\"Gifting for Subscriptions\";s:4:\"copy\";s:70:\"Let customers buy subscriptions for others - they\'re the ultimate gift\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:59:\"https://woo.com/products/woocommerce-subscriptions-gifting/\";}i:5;a:9:{s:4:\"slug\";s:42:\"product-edit-teams-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-for-teams\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:104:\"https://woo.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/teams-for-memberships.svg\";s:5:\"title\";s:21:\"Teams for Memberships\";s:4:\"copy\";s:123:\"Adds B2B functionality to WooCommerce Memberships, allowing sites to sell team, group, corporate, or family member accounts\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:55:\"https://woo.com/products/teams-woocommerce-memberships/\";}i:6;a:8:{s:4:\"slug\";s:29:\"product-edit-variation-images\";s:7:\"product\";s:39:\"woocommerce-additional-variation-images\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:110:\"https://woo.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/additional-variation-images.svg\";s:5:\"title\";s:27:\"Additional Variation Images\";s:4:\"copy\";s:72:\"Showcase your products in the best light with a image for each variation\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:65:\"https://woo.com/products/woocommerce-additional-variation-images/\";}i:7;a:9:{s:4:\"slug\";s:47:\"product-edit-woocommerce-subscription-downloads\";s:7:\"product\";s:34:\"woocommerce-subscription-downloads\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:105:\"https://woo.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscription-downloads.svg\";s:5:\"title\";s:22:\"Subscription Downloads\";s:4:\"copy\";s:57:\"Give customers special downloads with their subscriptions\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:60:\"https://woo.com/products/woocommerce-subscription-downloads/\";}i:8;a:8:{s:4:\"slug\";s:31:\"product-edit-min-max-quantities\";s:7:\"product\";s:30:\"woocommerce-min-max-quantities\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:101:\"https://woo.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/min-max-quantities.svg\";s:5:\"title\";s:18:\"Min/Max Quantities\";s:4:\"copy\";s:81:\"Specify minimum and maximum allowed product quantities for orders to be completed\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:44:\"https://woo.com/products/min-max-quantities/\";}i:9;a:8:{s:4:\"slug\";s:28:\"product-edit-name-your-price\";s:7:\"product\";s:27:\"woocommerce-name-your-price\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:98:\"https://woo.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/name-your-price.svg\";s:5:\"title\";s:15:\"Name Your Price\";s:4:\"copy\";s:70:\"Let customers pay what they want - useful for donations, tips and more\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:41:\"https://woo.com/products/name-your-price/\";}i:10;a:8:{s:4:\"slug\";s:42:\"product-edit-woocommerce-one-page-checkout\";s:7:\"product\";s:29:\"woocommerce-one-page-checkout\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:100:\"https://woo.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/one-page-checkout.svg\";s:5:\"title\";s:17:\"One Page Checkout\";s:4:\"copy\";s:92:\"Don\'t make customers click around - let them choose products, checkout & pay all on one page\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:55:\"https://woo.com/products/woocommerce-one-page-checkout/\";}i:11;a:9:{s:4:\"slug\";s:24:\"product-edit-automatewoo\";s:7:\"product\";s:11:\"automatewoo\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:96:\"https://woo.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscriptions.svg\";s:5:\"title\";s:23:\"Automate your marketing\";s:4:\"copy\";s:89:\"Win customers and keep them coming back with a nearly endless range of powerful workflows\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:37:\"https://woo.com/products/automatewoo/\";}i:12;a:4:{s:4:\"slug\";s:19:\"orders-empty-header\";s:7:\"context\";s:24:\"orders-list-empty-header\";s:5:\"title\";s:20:\"Tools for your store\";s:13:\"allow-dismiss\";b:0;}i:13;a:6:{s:4:\"slug\";s:30:\"orders-empty-footer-browse-all\";s:7:\"context\";s:24:\"orders-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:56:\"https://woo.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:14;a:8:{s:4:\"slug\";s:19:\"orders-empty-wc-pay\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-payments\";s:4:\"icon\";s:103:\"https://woo.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/woocommerce-payments.svg\";s:5:\"title\";s:20:\"WooCommerce Payments\";s:4:\"copy\";s:125:\"Securely accept payments and manage transactions directly from your WooCommerce dashboard – no setup costs or monthly fees.\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:46:\"https://woo.com/products/woocommerce-payments/\";}i:15;a:8:{s:4:\"slug\";s:19:\"orders-empty-zapier\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:18:\"woocommerce-zapier\";s:4:\"icon\";s:89:\"https://woo.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/zapier.svg\";s:5:\"title\";s:6:\"Zapier\";s:4:\"copy\";s:88:\"Save time and increase productivity by connecting your store to more than 1000+ services\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:44:\"https://woo.com/products/woocommerce-zapier/\";}i:16;a:8:{s:4:\"slug\";s:30:\"orders-empty-shipment-tracking\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:29:\"woocommerce-shipment-tracking\";s:4:\"icon\";s:100:\"https://woo.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipment-tracking.svg\";s:5:\"title\";s:17:\"Shipment Tracking\";s:4:\"copy\";s:86:\"Let customers know when their orders will arrive by adding shipment tracking to emails\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:43:\"https://woo.com/products/shipment-tracking/\";}i:17;a:8:{s:4:\"slug\";s:32:\"orders-empty-table-rate-shipping\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:31:\"woocommerce-table-rate-shipping\";s:4:\"icon\";s:102:\"https://woo.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/table-rate-shipping.svg\";s:5:\"title\";s:19:\"Table Rate Shipping\";s:4:\"copy\";s:122:\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:45:\"https://woo.com/products/table-rate-shipping/\";}i:18;a:8:{s:4:\"slug\";s:40:\"orders-empty-shipping-carrier-extensions\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:4:\"icon\";s:110:\"https://woo.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipping-carrier-extensions.svg\";s:5:\"title\";s:27:\"Shipping Carrier Extensions\";s:4:\"copy\";s:116:\"Show live rates from FedEx, UPS, USPS and more directly on your store - never under or overcharge for shipping again\";s:11:\"button-text\";s:13:\"Find Carriers\";s:8:\"promoted\";s:26:\"category-shipping-carriers\";s:3:\"url\";s:91:\"https://woo.com/product-category/woocommerce-extensions/shipping-methods/shipping-carriers/\";}i:19;a:8:{s:4:\"slug\";s:32:\"orders-empty-google-product-feed\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-product-feeds\";s:4:\"icon\";s:102:\"https://woo.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/google-product-feed.svg\";s:5:\"title\";s:19:\"Google Product Feed\";s:4:\"copy\";s:76:\"Increase sales by letting customers find you when they\'re shopping on Google\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:45:\"https://woo.com/products/google-product-feed/\";}i:20;a:4:{s:4:\"slug\";s:35:\"products-empty-header-product-types\";s:7:\"context\";s:26:\"products-list-empty-header\";s:5:\"title\";s:23:\"Other types of products\";s:13:\"allow-dismiss\";b:0;}i:21;a:6:{s:4:\"slug\";s:32:\"products-empty-footer-browse-all\";s:7:\"context\";s:26:\"products-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:56:\"https://woo.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:22;a:8:{s:4:\"slug\";s:30:\"products-empty-product-vendors\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-vendors\";s:4:\"icon\";s:98:\"https://woo.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-vendors.svg\";s:5:\"title\";s:15:\"Product Vendors\";s:4:\"copy\";s:47:\"Turn your store into a multi-vendor marketplace\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:41:\"https://woo.com/products/product-vendors/\";}i:23;a:8:{s:4:\"slug\";s:26:\"products-empty-memberships\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:23:\"woocommerce-memberships\";s:4:\"icon\";s:94:\"https://woo.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/memberships.svg\";s:5:\"title\";s:11:\"Memberships\";s:4:\"copy\";s:76:\"Give members access to restricted content or products, for a fee or for free\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woo.com/products/woocommerce-memberships/\";}i:24;a:9:{s:4:\"slug\";s:35:\"products-empty-woocommerce-deposits\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-deposits\";s:14:\"show-if-active\";a:1:{i:0;s:20:\"woocommerce-bookings\";}s:4:\"icon\";s:91:\"https://woo.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/deposits.svg\";s:5:\"title\";s:8:\"Deposits\";s:4:\"copy\";s:75:\"Make it easier for customers to pay by offering a deposit or a payment plan\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:46:\"https://woo.com/products/woocommerce-deposits/\";}i:25;a:8:{s:4:\"slug\";s:40:\"products-empty-woocommerce-subscriptions\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-subscriptions\";s:4:\"icon\";s:96:\"https://woo.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscriptions.svg\";s:5:\"title\";s:13:\"Subscriptions\";s:4:\"copy\";s:97:\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:51:\"https://woo.com/products/woocommerce-subscriptions/\";}i:26;a:8:{s:4:\"slug\";s:35:\"products-empty-woocommerce-bookings\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-bookings\";s:4:\"icon\";s:91:\"https://woo.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/bookings.svg\";s:5:\"title\";s:8:\"Bookings\";s:4:\"copy\";s:99:\"Allow customers to book appointments, make reservations or rent equipment without leaving your site\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:46:\"https://woo.com/products/woocommerce-bookings/\";}i:27;a:8:{s:4:\"slug\";s:30:\"products-empty-product-bundles\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-bundles\";s:4:\"icon\";s:98:\"https://woo.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-bundles.svg\";s:5:\"title\";s:15:\"Product Bundles\";s:4:\"copy\";s:49:\"Offer customizable bundles and assembled products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:41:\"https://woo.com/products/product-bundles/\";}}s:7:\"updated\";i:1703423811;}','no'),(442,'woocommerce_task_list_tracked_completed_tasks','a:3:{i:0;s:8:\"purchase\";i:1;s:8:\"products\";i:2;s:8:\"payments\";}','yes'),(452,'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'),(453,'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'),(454,'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'),(461,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(488,'product_cat_children','a:0:{}','yes'),(520,'_transient_shipping-transient-version','1670336319','yes'),(543,'elementor_log','a:18:{s:32:\"d4558fdaa589c77b3ada4d4510419310\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:92:\"/var/www/html/wordpressdemo/wp-content/plugins/elementor/includes/controls/base-multiple.php\";s:7:\"\0*\0line\";i:87;s:7:\"\0*\0date\";s:19:\"2022-12-06 14:22:05\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:22:\"Undefined index: value\";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:3;s:14:\"\0*\0times_dates\";a:3:{i:0;s:19:\"2022-12-06 14:22:05\";i:1;s:19:\"2022-12-19 19:06:51\";i:2;s:19:\"2023-05-30 13:59:47\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:22:\"Undefined index: value\";s:4:\"file\";s:92:\"/var/www/html/wordpressdemo/wp-content/plugins/elementor/includes/controls/base-multiple.php\";s:4:\"line\";i:87;s:5:\"trace\";b:1;}}s:32:\"41d01da3b51155933be445ceca340f1e\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-12-07 11:30:33\";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:\"2022-12-07 11:30:33\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"47d41d95ee641fd26269035bd059cc00\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-12-07 11:30:33\";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:\"2022-12-07 11:30:33\";}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:\"00a648924dfdd7157ef11e0bbfc4a59e\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-12-07 11:30:33\";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:\"2022-12-07 11:30:33\";}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:\"77eb06e3c6d6d6caaf312ce906c42c5d\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-12-07 11:30:33\";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.8.1\";s:2:\"to\";s:5:\"3.9.0\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-12-07 11:30:33\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.8.1\";s:2:\"to\";s:5:\"3.9.0\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"89fcccf25b202599e08aeba2f34ffcdc\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-12-07 11:30:33\";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.8.1\";s:2:\"to\";s:5:\"3.9.0\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-12-07 11:30:33\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.8.1\";s:2:\"to\";s:5:\"3.9.0\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"b9b8b3e9154436d6f3273606fa4ec749\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:6:\"913379\";s:7:\"\0*\0file\";s:105:\"https://wordpressdemo.subscriptionflow.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.9.0\";s:7:\"\0*\0line\";s:1:\"3\";s:7:\"\0*\0date\";s:19:\"2023-01-06 15:34:51\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:68:\"Cannot read properties of undefined (reading \\'settings\\')\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:6;s:14:\"\0*\0times_dates\";a:6:{i:0;s:19:\"2023-01-06 15:34:51\";i:1;s:19:\"2023-01-06 15:34:53\";i:2;s:19:\"2023-01-06 15:34:53\";i:3;s:19:\"2023-01-06 15:34:55\";i:4;s:19:\"2023-01-06 15:34:55\";i:5;s:19:\"2023-01-06 15:34:55\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1673019291\";s:7:\"message\";s:58:\"Cannot read properties of undefined (reading \\\'settings\\\')\";s:3:\"url\";s:105:\"https://wordpressdemo.subscriptionflow.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.9.0\";s:4:\"line\";s:1:\"3\";s:6:\"column\";s:6:\"913379\";}}s:32:\"12d76e638da6d0af6ac6365594cddcde\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:7:\"1068229\";s:7:\"\0*\0file\";s:105:\"https://wordpressdemo.subscriptionflow.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.9.0\";s:7:\"\0*\0line\";s:1:\"3\";s:7:\"\0*\0date\";s:19:\"2023-01-06 15:44:38\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:76:\"Cannot read properties of null (reading \\'getBoundingClientRect\\')\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:3;s:14:\"\0*\0times_dates\";a:3:{i:0;s:19:\"2023-01-06 15:44:38\";i:1;s:19:\"2023-01-06 15:44:50\";i:2;s:19:\"2023-01-06 15:52:30\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1673019878\";s:7:\"message\";s:66:\"Cannot read properties of null (reading \\\'getBoundingClientRect\\\')\";s:3:\"url\";s:105:\"https://wordpressdemo.subscriptionflow.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.9.0\";s:4:\"line\";s:1:\"3\";s:6:\"column\";s:7:\"1068229\";}}s:32:\"a66a353ec028118fe826ced2b09a80ff\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-01-23 11:01:13\";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.9.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-23 11:01:13\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.9.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:\"e48c1c5602b8c843b9580233042adb92\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-01-23 11:01:14\";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-23 11:01:14\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"0d3e1264d0deb7670d285919014bd603\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-01-23 11:01:14\";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-23 11:01:14\";}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:\"61db09268f2e97dfb8eca812d3a8894a\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-01-23 11:01:15\";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-23 11:01:15\";}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:\"7356004cf62b7cc37461037fdb1d4556\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-01-23 11:01:15\";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.9.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-23 11:01:15\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.9.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:\"26b66d481990e3310f39e1d95b7bb8d1\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-01-23 11:01:15\";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.9.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-23 11:01:15\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.9.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:\"216bb8f7ebb2810780af4cac9ce1d9d6\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:4:\"2932\";s:7:\"\0*\0file\";s:112:\"https://wordpressdemo.subscriptionflow.com/wp-content/plugins/elementor/assets/js/new-template.min.js?ver=3.10.1\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2023-02-06 10:13:50\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:51:\"elementor_new_template_form_controls is not defined\";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-06 10:13:50\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1675678430\";s:7:\"message\";s:51:\"elementor_new_template_form_controls is not defined\";s:3:\"url\";s:112:\"https://wordpressdemo.subscriptionflow.com/wp-content/plugins/elementor/assets/js/new-template.min.js?ver=3.10.1\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:4:\"2932\";}}s:32:\"780d24dc506bdce3ada8389b622f6a11\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:7:\"1075047\";s:7:\"\0*\0file\";s:106:\"https://wordpressdemo.subscriptionflow.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.10.1\";s:7:\"\0*\0line\";s:1:\"3\";s:7:\"\0*\0date\";s:19:\"2023-02-06 10:20:38\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:74:\"Cannot read properties of null (reading 'getBoundingClientRect')\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-02-06 10:20:38\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1675678838\";s:7:\"message\";s:64:\"Cannot read properties of null (reading \'getBoundingClientRect\')\";s:3:\"url\";s:106:\"https://wordpressdemo.subscriptionflow.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.10.1\";s:4:\"line\";s:1:\"3\";s:6:\"column\";s:7:\"1075047\";}}s:32:\"6c8f3cd672ebb255f7d9a354d23891c5\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:80:\"/var/www/html/wordpressdemo/wp-content/plugins/elementor-pro/license/updater.php\";s:7:\"\0*\0line\";i:84;s:7:\"\0*\0date\";s:19:\"2023-02-06 17:28:55\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:88:\"version_compare(): Passing null to parameter #2 ($version2) of type string is deprecated\";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:19;s:14:\"\0*\0times_dates\";a:19:{i:0;s:19:\"2023-02-06 17:28:55\";i:1;s:19:\"2023-02-07 05:29:43\";i:2;s:19:\"2023-02-07 15:40:26\";i:3;s:19:\"2023-02-08 03:08:44\";i:4;s:19:\"2023-02-08 14:26:58\";i:5;s:19:\"2023-02-09 14:57:47\";i:6;s:19:\"2023-02-10 02:10:39\";i:7;s:19:\"2023-02-10 14:23:11\";i:8;s:19:\"2023-02-11 02:01:13\";i:9;s:19:\"2023-02-11 13:49:12\";i:10;s:19:\"2023-02-12 01:57:40\";i:11;s:19:\"2023-02-12 23:04:16\";i:12;s:19:\"2023-02-13 06:31:42\";i:13;s:19:\"2023-02-13 14:01:25\";i:14;s:19:\"2023-02-14 02:49:13\";i:15;s:19:\"2023-02-14 15:46:17\";i:16;s:19:\"2023-02-15 05:33:51\";i:17;s:19:\"2023-02-15 13:59:24\";i:18;s:19:\"2023-02-16 03:13:50\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:88:\"version_compare(): Passing null to parameter #2 ($version2) of type string is deprecated\";s:4:\"file\";s:80:\"/var/www/html/wordpressdemo/wp-content/plugins/elementor-pro/license/updater.php\";s:4:\"line\";i:84;s:5:\"trace\";b:1;}}s:32:\"1bba1900be64b6c772d5bc3527a9764c\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:80:\"/var/www/html/wordpressdemo/wp-content/plugins/elementor-pro/license/updater.php\";s:7:\"\0*\0line\";i:84;s:7:\"\0*\0date\";s:19:\"2023-02-20 17:16:29\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:28:\"Undefined index: new_version\";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:656;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2023-12-22 14:01:02\";i:1;s:19:\"2023-12-23 02:02:56\";i:2;s:19:\"2023-12-23 14:28:10\";i:3;s:19:\"2023-12-24 01:57:51\";i:4;s:19:\"2023-12-24 14:12:25\";i:5;s:19:\"2023-12-25 01:56:38\";i:6;s:19:\"2023-12-25 14:29:30\";i:7;s:19:\"2023-12-26 01:58:02\";i:8;s:19:\"2023-12-26 14:29:37\";i:9;s:19:\"2023-12-27 01:50:47\";i:10;s:19:\"2023-12-27 13:59:33\";i:11;s:19:\"2023-12-28 01:56:18\";i:12;s:19:\"2023-12-28 13:54:04\";i:13;s:19:\"2023-12-29 02:17:57\";i:14;s:19:\"2023-12-29 14:37:20\";i:15;s:19:\"2023-12-30 02:46:48\";i:16;s:19:\"2023-12-30 14:09:18\";i:17;s:19:\"2023-12-31 01:58:47\";i:18;s:19:\"2023-12-31 13:52:38\";i:19;s:19:\"2024-01-01 01:49:44\";i:20;s:19:\"2024-01-01 14:31:27\";i:21;s:19:\"2024-01-02 03:05:37\";i:22;s:19:\"2024-01-02 13:49:47\";i:23;s:19:\"2024-01-03 02:04:50\";i:24;s:19:\"2024-01-03 14:07:01\";i:25;s:19:\"2024-01-04 02:52:18\";i:26;s:19:\"2024-01-04 13:59:09\";i:27;s:19:\"2024-01-05 01:50:53\";i:28;s:19:\"2024-01-05 13:48:21\";i:29;s:19:\"2024-01-06 02:11:32\";i:30;s:19:\"2024-01-06 14:05:12\";i:31;s:19:\"2024-01-07 01:54:21\";i:32;s:19:\"2024-01-07 16:33:24\";i:33;s:19:\"2024-01-08 04:05:11\";i:34;s:19:\"2024-01-08 14:02:42\";i:35;s:19:\"2024-01-09 01:55:10\";i:36;s:19:\"2024-01-09 14:06:44\";i:37;s:19:\"2024-01-10 05:25:11\";i:38;s:19:\"2024-01-10 14:05:00\";i:39;s:19:\"2024-01-11 01:53:41\";i:40;s:19:\"2024-01-11 13:59:16\";i:41;s:19:\"2024-01-12 02:10:01\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:28:\"Undefined index: new_version\";s:4:\"file\";s:80:\"/var/www/html/wordpressdemo/wp-content/plugins/elementor-pro/license/updater.php\";s:4:\"line\";i:84;s:5:\"trace\";b:1;}}}','no'),(629,'wc_sf_settings_tab_domain','https://wpdemo.subscriptionflow.com','yes'),(630,'wc_sf_settings_tab_client_id','ff484431-7caf-4475-872a-541ff277af59','yes'),(631,'wc_sf_settings_tab_client_secret','uKBbdAcak9FXu4m61QQmi9c6kEql2BpwYwHSHxvw','yes'),(632,'wc_sf_hpp_button_bg','#fd7b03','yes'),(633,'wc_sf_hpp_button_text_color','#ffffff','yes'),(698,'recovery_mode_email_last_sent','1701351370','yes'),(809,'widget_saml_login_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(857,'mo_saml_idp_plugin_version','1.4','no'),(858,'mo_idp_new_certs','2','no'),(859,'idp_keep_settings_intact','1','no'),(946,'smtp_mailer_options','a:9:{s:9:\"smtp_host\";s:0:\"\";s:9:\"smtp_auth\";s:5:\"false\";s:13:\"smtp_username\";s:25:\"jorerofoga@mailinator.com\";s:13:\"smtp_password\";s:36:\"am9yZXJvZm9nYUBtYWlsaW5hdG9yLmNvbQ==\";s:18:\"type_of_encryption\";s:3:\"tls\";s:9:\"smtp_port\";s:0:\"\";s:10:\"from_email\";s:0:\"\";s:9:\"from_name\";s:0:\"\";s:24:\"disable_ssl_verification\";s:0:\"\";}','yes'),(949,'wp_mail_smtp_initial_version','3.6.1','no'),(950,'wp_mail_smtp_version','3.6.1','no'),(951,'wp_mail_smtp','a:3:{s:4:\"mail\";a:6:{s:10:\"from_email\";s:13:\"info@demo.com\";s:9:\"from_name\";s:21:\"SubscriptionFlow Demo\";s:6:\"mailer\";s:4:\"mail\";s:11:\"return_path\";b:0;s:16:\"from_email_force\";b:1;s:15:\"from_name_force\";b:0;}s:4:\"smtp\";a:2:{s:7:\"autotls\";b:1;s:4:\"auth\";b:1;}s:7:\"general\";a:1:{s:29:\"summary_report_email_disabled\";b:0;}}','no'),(952,'wp_mail_smtp_activated_time','1670414635','no'),(953,'wp_mail_smtp_activated','a:1:{s:4:\"lite\";i:1670414635;}','yes'),(956,'wp_mail_smtp_migration_version','5','yes'),(957,'wp_mail_smtp_debug_events_db_version','1','yes'),(958,'wp_mail_smtp_activation_prevent_redirect','1','yes'),(959,'wp_mail_smtp_setup_wizard_stats','a:3:{s:13:\"launched_time\";i:1670414640;s:14:\"completed_time\";i:0;s:14:\"was_successful\";b:0;}','no'),(962,'wp_mail_smtp_review_notice','a:2:{s:4:\"time\";i:1670414664;s:9:\"dismissed\";b:0;}','yes'),(963,'wp_mail_smtp_debug','a:111:{i:0;i:4;i:1;i:5;i:2;i:6;i:3;i:7;i:4;i:8;i:5;i:9;i:6;i:10;i:7;i:11;i:8;i:12;i:9;i:13;i:10;i:14;i:11;i:15;i:12;i:16;i:13;i:17;i:14;i:18;i:15;i:19;i:16;i:20;i:17;i:21;i:18;i:22;i:19;i:23;i:20;i:24;i:21;i:25;i:22;i:26;i:23;i:27;i:24;i:28;i:25;i:29;i:26;i:30;i:27;i:31;i:28;i:32;i:29;i:33;i:30;i:34;i:31;i:35;i:32;i:36;i:33;i:37;i:34;i:38;i:35;i:39;i:36;i:40;i:37;i:41;i:38;i:42;i:39;i:43;i:40;i:44;i:41;i:45;i:42;i:46;i:43;i:47;i:44;i:48;i:45;i:49;i:46;i:50;i:47;i:51;i:48;i:52;i:49;i:53;i:50;i:54;i:51;i:55;i:52;i:56;i:53;i:57;i:54;i:58;i:55;i:59;i:56;i:60;i:57;i:61;i:58;i:62;i:59;i:63;i:60;i:64;i:61;i:65;i:62;i:66;i:63;i:67;i:64;i:68;i:65;i:69;i:66;i:70;i:67;i:71;i:68;i:72;i:69;i:73;i:70;i:74;i:71;i:75;i:72;i:76;i:73;i:77;i:74;i:78;i:75;i:79;i:76;i:80;i:77;i:81;i:78;i:82;i:79;i:83;i:80;i:84;i:81;i:85;i:82;i:86;i:83;i:87;i:84;i:88;i:85;i:89;i:86;i:90;i:87;i:91;i:88;i:92;i:89;i:93;i:90;i:94;i:91;i:95;i:92;i:96;i:93;i:97;i:94;i:98;i:95;i:99;i:96;i:100;i:97;i:101;i:98;i:102;i:99;i:103;i:100;i:104;i:101;i:105;i:102;i:106;i:103;i:107;i:104;i:108;i:105;i:109;i:106;i:110;i:107;i:111;i:108;i:112;i:109;i:113;i:110;i:114;}','no'),(964,'wp_mail_smtp_lite_sent_email_counter','113','yes'),(965,'wp_mail_smtp_lite_weekly_sent_email_counter','a:12:{i:43;i:1;i:44;i:1;i:45;i:3;i:46;i:1;i:47;i:1;i:48;i:38;i:49;i:2;i:50;i:1;i:51;i:1;i:52;i:2;s:2:\"01\";i:1;s:2:\"02\";i:1;}','yes'),(969,'wp_mail_smtp_notifications','a:4:{s:6:\"update\";i:1705003333;s:4:\"feed\";a:0:{}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','yes'),(997,'_transient_health-check-site-status-result','{\"good\":15,\"recommended\":6,\"critical\":2}','yes'),(1038,'mo_idp_new_registration','1','no'),(1058,'widget_mo_openidconnect_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1065,'mo_license_plan_from_feedback','','yes'),(1066,'mo_saml_license_message','','yes'),(1069,'elementor_allow_tracking','no','yes'),(1799,'theme_mods_royal-elementor-kit-child','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;}','yes'),(1802,'woocommerce_maybe_regenerate_images_hash','991b1ca641921cf0f5baf7a2fe85861b','yes'),(2570,'woocommerce_task_list_reminder_bar_hidden','yes','yes'),(2992,'elementor_unfiltered_files_upload','1','yes'),(3181,'_elementor_editor_upgrade_notice_dismissed','1675675775','yes'),(3652,'rek_rating_dismiss_notice','1','yes'),(3653,'wpr_maybe_later_time','1673357791','yes'),(5001,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(5020,'elementor_1_elementor_updater_batch_46bc64ba0a65e16e4c222193c984','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'),(5025,'_elementor_global_css','a:6:{s:4:\"time\";i:1674471681;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'),(5028,'_elementor_assets_data','a:1:{s:3:\"css\";a:1:{s:7:\"widgets\";a:36:{s:8:\"wpr-logo\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.16.6\";}s:13:\"wpr-mega-menu\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.16.6\";}s:10:\"wpr-button\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.16.6\";}s:7:\"heading\";a:2:{s:7:\"content\";s:673:\"<style>/*! elementor - v3.16.0 - 17-10-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>\";s:7:\"version\";s:6:\"3.16.6\";}s:11:\"text-editor\";a:2:{s:7:\"content\";s:719:\"<style>/*! elementor - v3.16.0 - 17-10-2023 */\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.16.6\";}s:13:\"wpr-promo-box\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.16.6\";}s:7:\"divider\";a:2:{s:7:\"content\";s:3594:\"<style>/*! elementor - v3.16.0 - 17-10-2023 */\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-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,100%);--flex-grow:var(--container-widget-flex-grow)}</style>\";s:7:\"version\";s:6:\"3.16.6\";}s:15:\"wpr-back-to-top\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.16.6\";}s:18:\"wpr-product-notice\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.16.6\";}s:17:\"wpr-product-media\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.16.6\";}s:17:\"wpr-product-title\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.16.6\";}s:18:\"wpr-product-rating\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.16.6\";}s:17:\"wpr-product-price\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.16.6\";}s:16:\"wpr-product-meta\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.16.6\";}s:23:\"wpr-product-add-to-cart\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.16.6\";}s:17:\"wpr-product-stock\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.16.6\";}s:19:\"wpr-product-excerpt\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.16.6\";}s:16:\"wpr-product-tabs\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.16.6\";}s:17:\"wpr-pricing-table\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.16.6\";}s:6:\"spacer\";a:2:{s:7:\"content\";s:1379:\"<style>/*! elementor - v3.16.0 - 17-10-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>\";s:7:\"version\";s:6:\"3.16.6\";}s:9:\"shortcode\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.16.6\";}s:12:\"wpr-woo-grid\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.16.6\";}s:5:\"image\";a:2:{s:7:\"content\";s:269:\"<style>/*! elementor - v3.16.0 - 17-10-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>\";s:7:\"version\";s:6:\"3.16.6\";}s:13:\"wpr-page-cart\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.16.6\";}s:4:\"html\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.16.6\";}s:6:\"button\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.16.6\";}s:8:\"icon-box\";a:2:{s:7:\"content\";s:137:\"<link rel=\"stylesheet\" href=\"https://wordpressdemo.subscriptionflow.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">\";s:7:\"version\";s:6:\"3.16.6\";}s:9:\"wpr-forms\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.16.6\";}s:15:\"wpr-google-maps\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.16.6\";}s:17:\"wpr-page-checkout\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.16.6\";}s:16:\"wpr-progress-bar\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.16.6\";}s:9:\"accordion\";a:2:{s:7:\"content\";s:1743:\"<style>/*! elementor - v3.16.0 - 17-10-2023 */\n.elementor-accordion{text-align:left}.elementor-accordion .elementor-accordion-item{border:1px solid #d5d8dc}.elementor-accordion .elementor-accordion-item+.elementor-accordion-item{border-top:none}.elementor-accordion .elementor-tab-title{margin:0;padding:15px 20px;font-weight:700;line-height:1;cursor:pointer;outline:none}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{display:inline-block;width:1.5em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon svg{width:1em;height:1em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-right{float:right;text-align:right}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-left{float:left;text-align:left}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-closed{display:block}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-opened,.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-closed{display:none}.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-opened{display:block}.elementor-accordion .elementor-tab-content{display:none;padding:15px 20px;border-top:1px solid #d5d8dc}@media (max-width:767px){.elementor-accordion .elementor-tab-title{padding:12px 15px}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{width:1.2em}.elementor-accordion .elementor-tab-content{padding:7px 15px}}.e-con-inner>.elementor-widget-accordion,.e-con>.elementor-widget-accordion{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>\";s:7:\"version\";s:6:\"3.16.6\";}s:15:\"wpr-team-member\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.16.6\";}s:13:\"wpr-mailchimp\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.16.6\";}s:23:\"wpr-product-sales-badge\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.16.6\";}s:5:\"forms\";a:2:{s:7:\"content\";s:7299:\"<style>/*! elementor-pro - v3.7.7 - 20-09-2022 */\n.elementor-button.elementor-hidden,.elementor-hidden{display:none}.e-form__step{width:100%}.e-form__step:not(.elementor-hidden){display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.e-form__buttons{-ms-flex-wrap:wrap;flex-wrap:wrap}.e-form__buttons,.e-form__buttons__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.e-form__indicators{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:nowrap;flex-wrap:nowrap;font-size:13px;margin-bottom:var(--e-form-steps-indicators-spacing)}.e-form__indicators,.e-form__indicators__indicator{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.e-form__indicators__indicator{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-preferred-size:0;flex-basis:0;padding:0 var(--e-form-steps-divider-gap)}.e-form__indicators__indicator__progress{width:100%;position:relative;background-color:var(--e-form-steps-indicator-progress-background-color);border-radius:var(--e-form-steps-indicator-progress-border-radius);overflow:hidden}.e-form__indicators__indicator__progress__meter{width:var(--e-form-steps-indicator-progress-meter-width,0);height:var(--e-form-steps-indicator-progress-height);line-height:var(--e-form-steps-indicator-progress-height);padding-right:15px;border-radius:var(--e-form-steps-indicator-progress-border-radius);background-color:var(--e-form-steps-indicator-progress-color);color:var(--e-form-steps-indicator-progress-meter-color);text-align:right;-webkit-transition:width .1s linear;-o-transition:width .1s linear;transition:width .1s linear}.e-form__indicators__indicator:first-child{padding-left:0}.e-form__indicators__indicator:last-child{padding-right:0}.e-form__indicators__indicator--state-inactive{color:var(--e-form-steps-indicator-inactive-primary-color,#c2cbd2)}.e-form__indicators__indicator--state-inactive [class*=indicator--shape-]:not(.e-form__indicators__indicator--shape-none){background-color:var(--e-form-steps-indicator-inactive-secondary-color,#fff)}.e-form__indicators__indicator--state-inactive object,.e-form__indicators__indicator--state-inactive svg{fill:var(--e-form-steps-indicator-inactive-primary-color,#c2cbd2)}.e-form__indicators__indicator--state-active{color:var(--e-form-steps-indicator-active-primary-color,#39b54a);border-color:var(--e-form-steps-indicator-active-secondary-color,#fff)}.e-form__indicators__indicator--state-active [class*=indicator--shape-]:not(.e-form__indicators__indicator--shape-none){background-color:var(--e-form-steps-indicator-active-secondary-color,#fff)}.e-form__indicators__indicator--state-active object,.e-form__indicators__indicator--state-active svg{fill:var(--e-form-steps-indicator-active-primary-color,#39b54a)}.e-form__indicators__indicator--state-completed{color:var(--e-form-steps-indicator-completed-secondary-color,#fff)}.e-form__indicators__indicator--state-completed [class*=indicator--shape-]:not(.e-form__indicators__indicator--shape-none){background-color:var(--e-form-steps-indicator-completed-primary-color,#39b54a)}.e-form__indicators__indicator--state-completed .e-form__indicators__indicator__label{color:var(--e-form-steps-indicator-completed-primary-color,#39b54a)}.e-form__indicators__indicator--state-completed .e-form__indicators__indicator--shape-none{color:var(--e-form-steps-indicator-completed-primary-color,#39b54a);background-color:initial}.e-form__indicators__indicator--state-completed object,.e-form__indicators__indicator--state-completed svg{fill:var(--e-form-steps-indicator-completed-secondary-color,#fff)}.e-form__indicators__indicator__icon{width:var(--e-form-steps-indicator-padding,30px);height:var(--e-form-steps-indicator-padding,30px);font-size:var(--e-form-steps-indicator-icon-size);border-width:1px;border-style:solid;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;overflow:hidden;margin-bottom:10px}.e-form__indicators__indicator__icon img,.e-form__indicators__indicator__icon object,.e-form__indicators__indicator__icon svg{width:var(--e-form-steps-indicator-icon-size);height:auto}.e-form__indicators__indicator__icon .e-font-icon-svg{height:1em}.e-form__indicators__indicator__number{width:var(--e-form-steps-indicator-padding,30px);height:var(--e-form-steps-indicator-padding,30px);border-width:1px;border-style:solid;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:10px}.e-form__indicators__indicator--shape-circle{border-radius:50%}.e-form__indicators__indicator--shape-square{border-radius:0}.e-form__indicators__indicator--shape-rounded{border-radius:5px}.e-form__indicators__indicator--shape-none{border:0}.e-form__indicators__indicator__label{text-align:center}.e-form__indicators__indicator__separator{width:100%;height:var(--e-form-steps-divider-width);background-color:#c2cbd2}.e-form__indicators--type-icon,.e-form__indicators--type-icon_text,.e-form__indicators--type-number,.e-form__indicators--type-number_text{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.e-form__indicators--type-icon .e-form__indicators__indicator__separator,.e-form__indicators--type-icon_text .e-form__indicators__indicator__separator,.e-form__indicators--type-number .e-form__indicators__indicator__separator,.e-form__indicators--type-number_text .e-form__indicators__indicator__separator{margin-top:calc(var(--e-form-steps-indicator-padding, 30px) / 2 - var(--e-form-steps-divider-width, 1px) / 2)}.elementor-field-type-hidden{display:none}.elementor-field-type-html{display:inline-block}.elementor-login .elementor-lost-password,.elementor-login .elementor-remember-me{font-size:.85em}.elementor-field-type-recaptcha_v3 .elementor-field-label{display:none}.elementor-field-type-recaptcha_v3 .grecaptcha-badge{z-index:1}.elementor-button .elementor-form-spinner{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.elementor-form .elementor-button>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-form .elementor-button .elementor-button-text{white-space:normal;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0}.elementor-form .elementor-button svg{height:auto}.elementor-form .elementor-button .e-font-icon-svg{height:1em}.elementor-select-wrapper .select-caret-down-wrapper{position:absolute;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);inset-inline-end:10px;pointer-events:none;font-size:11px}.elementor-select-wrapper .select-caret-down-wrapper svg{display:unset;width:1em;aspect-ratio:unset;fill:currentColor}.elementor-select-wrapper .select-caret-down-wrapper i{font-size:19px;line-height:2}.elementor-select-wrapper.remove-before:before{content:\"\"!important}</style>\";s:7:\"version\";s:5:\"3.7.7\";}}}}','yes'),(5037,'woocommerce_onboarding_profile','a:1:{s:9:\"completed\";b:1;}','yes'),(5095,'message','Thank you for the feedback.','yes'),(6157,'elementor_pro_license_key','activated','yes'),(6158,'_elementor_pro_license_data','a:2:{s:7:\"timeout\";i:1705087748;s:5:\"value\";s:73:\"{\"license\":\"valid\",\"expires\":\"01.01.2030\",\"features\":{\"pro_trial\":false}}\";}','yes'),(6159,'elementor_pro_version','3.7.7','yes'),(6160,'widget_elementor-library','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(6161,'_elementor_pro_installed_time','1675678385','yes'),(6162,'elementor_submissions_db_version','5','yes'),(6163,'elementor_fonts_manager_font_types','a:0:{}','yes'),(6164,'elementor_fonts_manager_fonts','a:0:{}','yes'),(6165,'elementor_custom_icon_sets_config','a:0:{}','yes'),(6176,'elementor_pro_theme_builder_conditions','a:0:{}','yes'),(6265,'_elementor_pro_api_requests_lock','a:1:{s:11:\"get_version\";i:1702692506;}','yes'),(10511,'auto_core_update_notified','a:4:{s:4:\"type\";s:4:\"fail\";s:5:\"email\";s:13:\"info@demo.com\";s:7:\"version\";s:5:\"6.4.2\";s:9:\"timestamp\";i:1701913742;}','no'),(19177,'db_upgraded','','yes'),(22338,'wp_0e01f9ed8f2d478f34cae54690e73413','1696858660','no'),(22353,'can_compress_scripts','0','yes'),(22792,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:2:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.4.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.4.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.4.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.4.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.4.2\";s:7:\"version\";s:5:\"6.4.2\";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:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.4.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.4.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.4.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.4.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.4.2\";s:7:\"version\";s:5:\"6.4.2\";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:9:\"new_files\";s:1:\"1\";}}s:12:\"last_checked\";i:1705025400;s:15:\"version_checked\";s:5:\"6.3.2\";s:12:\"translations\";a:0:{}}','no'),(23059,'wp_885e13244eb5c7eb8d1371f8a2127ad1','1697417779','no'),(23238,'wp_6629a853a94df9353d7fcb73e684cecc','1697603675','no'),(23294,'wp_5fff4ee3c07dd4c877365578aca4bade','1697627935','no'),(23303,'wp_118d83d800c72ef9b2c3b07f2686ae5d','1697718613','no'),(23318,'wp_8932aeeee052e8487f35271622b3a4e5','1697652053','no'),(23429,'wc_blocks_use_blockified_product_grid_block_as_template','no','yes'),(23430,'wc_blocks_version','11.1.2','yes'),(23431,'jetpack_connection_active_plugins','a:1:{s:11:\"woocommerce\";a:1:{s:4:\"name\";s:11:\"WooCommerce\";}}','yes'),(23434,'woocommerce_custom_orders_table_enabled','no','yes'),(23435,'woocommerce_custom_orders_table_data_sync_enabled','no','yes'),(23436,'woocommerce_custom_orders_table_created','yes','yes'),(23437,'woocommerce_feature_marketplace_enabled','yes','yes'),(23438,'woocommerce_feature_product_block_editor_enabled','no','yes'),(23445,'_transient_wc_attribute_taxonomies','a:0:{}','yes'),(23446,'jetpack_options','a:1:{s:14:\"last_heartbeat\";i:1704977225;}','yes'),(23447,'_transient_timeout_woocommerce_blocks_asset_api_script_data_ssl','1707636548','no'),(23448,'_transient_woocommerce_blocks_asset_api_script_data_ssl','{\"script_data\":{\"build\\/wc-settings.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-settings.js\",\"version\":\"b31b6165ac2a07ada0ff536d52b1466d\",\"dependencies\":[\"wp-hooks\",\"wp-i18n\",\"wp-polyfill\"]},\"build\\/wc-blocks-middleware.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks-middleware.js\",\"version\":\"208988bfef8a0a939e506218fc806a2b\",\"dependencies\":[\"wp-api-fetch\",\"wp-polyfill\"]},\"build\\/wc-blocks-data.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks-data.js\",\"version\":\"6279193027a1b903984715859dfcbaab\",\"dependencies\":[\"wc-blocks-registry\",\"wc-settings\",\"wp-api-fetch\",\"wp-data\",\"wp-data-controls\",\"wp-deprecated\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-notices\",\"wp-polyfill\",\"wp-url\"]},\"build\\/wc-blocks-vendors.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks-vendors.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/wc-blocks-registry.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks-registry.js\",\"version\":\"ecaf398656735e56f2d30eafc248ef35\",\"dependencies\":[\"wp-data\",\"wp-deprecated\",\"wp-element\",\"wp-polyfill\"]},\"build\\/wc-blocks.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks.js\",\"version\":\"1159c1fb50bedb71fad49f8808017cfe\",\"dependencies\":[\"wp-blocks\",\"wp-compose\",\"wp-element\",\"wp-hooks\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/wc-blocks-shared-context.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks-shared-context.js\",\"version\":\"caa936d2b7c335001cfc366d96d8a569\",\"dependencies\":[\"wp-element\",\"wp-polyfill\"]},\"build\\/wc-blocks-shared-hocs.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks-shared-hocs.js\",\"version\":\"7243a9fa7264377a45413afae757013f\",\"dependencies\":[\"wc-blocks-data-store\",\"wc-blocks-shared-context\",\"wp-data\",\"wp-element\",\"wp-is-shallow-equal\",\"wp-polyfill\"]},\"build\\/price-format.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/price-format.js\",\"version\":\"46126111d3b46712d9c0f0dbd873b138\",\"dependencies\":[\"wc-settings\",\"wp-polyfill\"]},\"build\\/blocks-checkout.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/blocks-checkout.js\",\"version\":\"cb1e22af331a53010b79e1484a5344bd\",\"dependencies\":[\"lodash\",\"react\",\"react-dom\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-warning\"]},\"build\\/active-filters.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/active-filters.js\",\"version\":\"ed942f2e4631590ba01d30e045367abf\",\"dependencies\":[\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/active-filters-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/active-filters-frontend.js\",\"version\":\"948664e8c5afa263b9c5dfda6dc2e83a\",\"dependencies\":[\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-data\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/all-products.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/all-products.js\",\"version\":\"f478ea858b58d3507924bea2c4c214ad\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/all-products-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/all-products-frontend.js\",\"version\":\"d12119aa2d9e588535c80fe0310c869e\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/all-reviews.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/all-reviews.js\",\"version\":\"d578e628b1e1f0148c7bf60cfe1c602f\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/reviews-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/reviews-frontend.js\",\"version\":\"f7574b7910cac2f35291759fd35ce254\",\"dependencies\":[\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-compose\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\"]},\"build\\/attribute-filter.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/attribute-filter.js\",\"version\":\"19c61fdb57ae1e3ee4c4465694e2e73f\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"build\\/attribute-filter-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/attribute-filter-frontend.js\",\"version\":\"10589e1dbed5b10fc6383d7730b8b091\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"build\\/breadcrumbs.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/breadcrumbs.js\",\"version\":\"779832775ebf460068025eadf0e90da7\",\"dependencies\":[\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/catalog-sorting.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/catalog-sorting.js\",\"version\":\"70d26793890b54364d1bbd5bce8a2e5f\",\"dependencies\":[\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/legacy-template.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/legacy-template.js\",\"version\":\"1deb4ed7bca43c65a86d8f5cd71d0f2e\",\"dependencies\":[\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-core-data\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-notices\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/customer-account.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/customer-account.js\",\"version\":\"cae8d20aaf0cf655dbdfdee65cb8690e\",\"dependencies\":[\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/featured-category.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/featured-category.js\",\"version\":\"3d12a7feebe4b68db6a36c9782d5ad32\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\"]},\"build\\/featured-product.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/featured-product.js\",\"version\":\"e4170e4eaef5b2cd3a1ecc1620f83f6e\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\"]},\"build\\/filter-wrapper.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/filter-wrapper.js\",\"version\":\"39a31dba3fd2d291ce2697866fa1c71d\",\"dependencies\":[\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/filter-wrapper-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/filter-wrapper-frontend.js\",\"version\":\"1c42e853788847e4cb9b601a4b29ff97\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\"]},\"build\\/handpicked-products.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/handpicked-products.js\",\"version\":\"a19a347add2b45d53540cfee4e85f35a\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/mini-cart.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart.js\",\"version\":\"dcafac4b01a7e074b1393897ae84166f\",\"dependencies\":[\"react\",\"wc-price-format\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/mini-cart-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-frontend.js\",\"version\":\"b922d0f8fc627b4c7695288bc4eb7d38\",\"dependencies\":[\"wc-price-format\",\"wc-settings\",\"wp-i18n\",\"wp-polyfill\"]},\"build\\/store-notices.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/store-notices.js\",\"version\":\"b0410f962bb163ecf804f85945494a69\",\"dependencies\":[\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/price-filter.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/price-filter.js\",\"version\":\"d34658f1bc90f65917dff23469786540\",\"dependencies\":[\"react\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/price-filter-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/price-filter-frontend.js\",\"version\":\"4f2ef15ca232059ed0f17c7cfbea62f5\",\"dependencies\":[\"react\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-url\"]},\"build\\/product-add-to-cart.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-add-to-cart.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/product-add-to-cart-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-add-to-cart-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/product-best-sellers.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-best-sellers.js\",\"version\":\"5e118444ec6ac5c2b3b9440f9a558d7f\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/product-button.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-button.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/product-button-interactivity-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-button-interactivity-frontend.js\",\"version\":\"f231c36d2e6154d2cf545a864568f5e4\",\"dependencies\":[\"lodash\",\"wc-blocks-data-store\",\"wc-interactivity\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-warning\"]},\"build\\/product-categories.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-categories.js\",\"version\":\"4c0c5bfa88e3bc2d34f8b7cd3089cbc1\",\"dependencies\":[\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\"]},\"build\\/product-category.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-category.js\",\"version\":\"bbc8aaa78e356a825d5c33c7e4fcce76\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/product-collection.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-collection.js\",\"version\":\"941432e3696193936d37736b8faf9837\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/product-new.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-new.js\",\"version\":\"54fd948597e5afa211abe9b37a3382e8\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/product-on-sale.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-on-sale.js\",\"version\":\"b39b1e40568e2dd5b37320e6dfa17f57\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/product-template.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-template.js\",\"version\":\"b73d4ef43094fefd8eb5a09bc3178c82\",\"dependencies\":[\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-core-data\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\"]},\"build\\/product-query.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-query.js\",\"version\":\"b09016077f61d88bbd680cc641cef9ff\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/product-query-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-query-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/product-results-count.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-results-count.js\",\"version\":\"62389880d09bea807af392c535996912\",\"dependencies\":[\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/product-search.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-search.js\",\"version\":\"a32bcc8d5170d5a7d8e4c9854477f8f8\",\"dependencies\":[\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/product-summary.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-summary.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/product-tag.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-tag.js\",\"version\":\"74f9457abc552c377bfd00525d7f7ed6\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/product-title.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-title.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/product-title-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-title-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/product-top-rated.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-top-rated.js\",\"version\":\"635f63dff3d29cca693bd94a17659bda\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/products-by-attribute.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/products-by-attribute.js\",\"version\":\"73b9ca1ee1dfe920689b7c2ca1134bbb\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/rating-filter.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/rating-filter.js\",\"version\":\"8a60b8434a974c7d9e71c9863ee4a423\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"build\\/reviews-by-category.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/reviews-by-category.js\",\"version\":\"6ecfcf28de8997b8f93996a0bf52766c\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/reviews-by-product.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/reviews-by-product.js\",\"version\":\"2a47a97286dbc7a2293f760ee2b21f6f\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/single-product.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/single-product.js\",\"version\":\"7dc18ae07298254fb4c2c3f50f368333\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/stock-filter.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/stock-filter.js\",\"version\":\"8bfac93830eed1003e87b254e7103dda\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"build\\/stock-filter-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/stock-filter-frontend.js\",\"version\":\"bb50cc5d94568fa66c1b2da4c7ab3060\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"build\\/cart.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart.js\",\"version\":\"23d484e326a0b12a525fb0d7beddac73\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-editor\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/cart-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-frontend.js\",\"version\":\"89e864cb281577fa4668ce653ccc6f41\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-blocks\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/cart-blocks\\/order-summary-coupon-form-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-coupon-form-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-taxes-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-taxes-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/empty-cart-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/empty-cart-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-items-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-items-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-discount-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-discount-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/proceed-to-checkout-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/proceed-to-checkout-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-accepted-payment-methods-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-accepted-payment-methods-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-heading-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-heading-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-express-payment-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-express-payment-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/filled-cart-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/filled-cart-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-totals-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-totals-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-cross-sells-products--product-price-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-cross-sells-products--product-price-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-line-items-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-line-items-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-cross-sells-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-cross-sells-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-express-payment--checkout-blocks\\/express-payment-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-express-payment--checkout-blocks\\/express-payment-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-cross-sells-products-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-cross-sells-products-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-subtotal-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-subtotal-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/empty-cart-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/empty-cart-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-shipping-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-shipping-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/proceed-to-checkout-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/proceed-to-checkout-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-heading-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-heading-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-shipping-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-shipping-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-cross-sells-products-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-cross-sells-products-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-taxes-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-taxes-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-line-items-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-line-items-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-order-summary-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-order-summary-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/filled-cart-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/filled-cart-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-fee-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-fee-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-express-payment-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-express-payment-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-line-items--mini-cart-contents-block\\/products-table-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-line-items--mini-cart-contents-block\\/products-table-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-fee-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-fee-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-subtotal-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-subtotal-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-items-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-items-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-discount-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-discount-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-totals-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-totals-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-accepted-payment-methods-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-accepted-payment-methods-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-order-summary-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-order-summary-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-cross-sells-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-cross-sells-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-coupon-form-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-coupon-form-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/vendors--cart-blocks\\/proceed-to-checkout-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/vendors--cart-blocks\\/proceed-to-checkout-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/vendors--cart-blocks\\/order-summary-shipping--checkout-blocks\\/billing-address--checkout-blocks\\/order--decc3dc6-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/vendors--cart-blocks\\/order-summary-shipping--checkout-blocks\\/billing-address--checkout-blocks\\/order--decc3dc6-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/vendors--cart-blocks\\/order-summary-shipping--checkout-blocks\\/order-summary-shipping--checkout-block--24d3fc0c-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/vendors--cart-blocks\\/order-summary-shipping--checkout-blocks\\/order-summary-shipping--checkout-block--24d3fc0c-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/vendors--cart-blocks\\/cart-cross-sells-products--cart-blocks\\/cart-line-items--cart-blocks\\/cart-order--3c5fe802-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/vendors--cart-blocks\\/cart-cross-sells-products--cart-blocks\\/cart-line-items--cart-blocks\\/cart-order--3c5fe802-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/vendors--cart-blocks\\/cart-line-items--checkout-blocks\\/order-summary-cart-items--mini-cart-contents---233ab542-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/vendors--cart-blocks\\/cart-line-items--checkout-blocks\\/order-summary-cart-items--mini-cart-contents---233ab542-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-order-summary-taxes-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-taxes-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-order-summary-subtotal-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-subtotal-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/filled-cart-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/filled-cart-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/empty-cart-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/empty-cart-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-totals-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-totals-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-items-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-items-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-line-items-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-line-items-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-order-summary-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-express-payment-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-express-payment-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/proceed-to-checkout-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/proceed-to-checkout-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-accepted-payment-methods-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-accepted-payment-methods-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-order-summary-coupon-form-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-coupon-form-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-order-summary-discount-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-discount-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-order-summary-fee-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-fee-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-order-summary-heading-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-heading-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-order-summary-shipping-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-shipping-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-cross-sells-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-cross-sells-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-cross-sells-products-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-cross-sells-products-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout.js\",\"version\":\"1b91965aaf315e8ca91923398605c910\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-editor\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/checkout-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-frontend.js\",\"version\":\"a6427457ee65cfa508d1d3bcc982f8a8\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/checkout-blocks\\/order-summary-coupon-form-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-coupon-form-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/pickup-options-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/pickup-options-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/shipping-methods-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/shipping-methods-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-taxes-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-taxes-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/terms-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/terms-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-discount-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-discount-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/payment-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/payment-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/shipping-address-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/shipping-address-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/contact-information-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/contact-information-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-subtotal-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-subtotal-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/terms-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/terms-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/shipping-methods-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/shipping-methods-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-shipping-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-shipping-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/totals-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/totals-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/billing-address-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/billing-address-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/fields-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/fields-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/shipping-method-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/shipping-method-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-shipping-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-shipping-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/payment-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/payment-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/actions-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/actions-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/shipping-address-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/shipping-address-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-taxes-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-taxes-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-cart-items-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-cart-items-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/actions--checkout-blocks\\/terms-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/actions--checkout-blocks\\/terms-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-note-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-note-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/fields-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/fields-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-fee-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-fee-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/totals-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/totals-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/billing-address-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/billing-address-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-fee-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-fee-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-subtotal-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-subtotal-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-discount-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-discount-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/actions-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/actions-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/pickup-options-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/pickup-options-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-cart-items-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-cart-items-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/express-payment-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/express-payment-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/contact-information-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/contact-information-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/shipping-method-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/shipping-method-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-coupon-form-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-coupon-form-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/vendors--checkout-blocks\\/billing-address--checkout-blocks\\/shipping-address-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/vendors--checkout-blocks\\/billing-address--checkout-blocks\\/shipping-address-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/vendors--checkout-blocks\\/shipping-method-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/vendors--checkout-blocks\\/shipping-method-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/vendors--checkout-blocks\\/shipping-method-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/vendors--checkout-blocks\\/shipping-method-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-actions-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-actions-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-billing-address-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-billing-address-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-contact-information-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-contact-information-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-express-payment-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-express-payment-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-fields-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-fields-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-order-note-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-note-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-order-summary-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-order-summary-cart-items-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-cart-items-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-order-summary-coupon-form-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-coupon-form-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-order-summary-discount-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-discount-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-order-summary-fee-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-fee-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-order-summary-shipping-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-shipping-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-order-summary-subtotal-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-subtotal-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-order-summary-taxes-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-taxes-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-payment-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-payment-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-shipping-address-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-shipping-address-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-shipping-methods-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-shipping-methods-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-shipping-method-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-shipping-method-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-pickup-options-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-pickup-options-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-terms-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-terms-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-totals-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-totals-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-contents.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents.js\",\"version\":\"e9456573a7b01f9120587bf7edc5a57d\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/empty-mini-cart-contents-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/empty-mini-cart-contents-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/filled-mini-cart-contents-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/filled-mini-cart-contents-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-footer-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-footer-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-items-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-items-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-products-table-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-products-table-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-shopping-button-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-shopping-button-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-cart-button-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-cart-button-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-checkout-button-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-checkout-button-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-title-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-title-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-title-items-counter-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-title-items-counter-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-title-label-block.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-title-label-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/wc-shipping-method-pickup-location.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-shipping-method-pickup-location.js\",\"version\":\"47dbbddb245b2a5c4200dd7ae830e8b6\",\"dependencies\":[\"react\",\"react-dom\",\"wc-settings\",\"wp-api-fetch\",\"wp-components\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/mini-cart-component-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-component-frontend.js\",\"version\":\"a0eb1c412a9dfd9bcec35fdcfbbd716d\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-autop\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/mini-cart-contents-block\\/products-table--product-image--product-title-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/products-table--product-image--product-title-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/empty-cart-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/empty-cart-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/title-items-counter-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/title-items-counter-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/cart-button--mini-cart-contents-block\\/checkout-button--mini-cart-contents---358acf4e-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/cart-button--mini-cart-contents-block\\/checkout-button--mini-cart-contents---358acf4e-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/title-label-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/title-label-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/checkout-button-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/checkout-button-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/filled-cart-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/filled-cart-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/items-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/items-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/empty-cart-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/empty-cart-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/shopping-button-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/shopping-button-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/footer-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/footer-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/products-table-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/products-table-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/shopping-button-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/shopping-button-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/title-label-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/title-label-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/cart-button-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/cart-button-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/title-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/title-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/footer-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/footer-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/checkout-button-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/checkout-button-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/filled-cart-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/filled-cart-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/products-table-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/products-table-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/title-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/title-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/items-frontend.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/items-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/cart-button-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/cart-button-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/title-items-counter-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/title-items-counter-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/vendors--mini-cart-contents-block\\/products-table-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/vendors--mini-cart-contents-block\\/products-table-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/vendors--mini-cart-contents-block\\/products-table--price-filter-wrapper--product-price-style.js\":{\"src\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/vendors--mini-cart-contents-block\\/products-table--price-filter-wrapper--product-price-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]}},\"version\":\"11.1.2\",\"hash\":\"a0c7bc94f862cf5af19315b7b1f9ad18\"}','no'),(23454,'_transient_timeout_woocommerce_admin_remote_free_extensions_specs','1705587736','no'),(23455,'_transient_woocommerce_admin_remote_free_extensions_specs','a:1:{s:5:\"en_US\";a:5:{s:10:\"obw/basics\";O:8:\"stdClass\":3:{s:3:\"key\";s:10:\"obw/basics\";s:5:\"title\";s:14:\"Get the basics\";s:7:\"plugins\";a:4:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"WooPayments\";s:11:\"description\";s:146:\"Accept credit cards and other popular payment methods with <a href=\"https://woo.com/products/woocommerce-payments\" target=\"_blank\">WooPayments</a>\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:39:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SI\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"is_built_by_wc\";b:1;s:14:\"min_wp_version\";s:3:\"5.9\";s:3:\"key\";s:20:\"woocommerce-payments\";}i:1;O:8:\"stdClass\":5:{s:4:\"name\";s:20:\"WooCommerce Shipping\";s:11:\"description\";s:111:\"Print shipping labels with <a href=\"https://woo.com/products/shipping\" target=\"_blank\">WooCommerce Shipping</a>\";s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:13:\"product_types\";}}i:1;O:8:\"stdClass\":1:{s:3:\"use\";s:5:\"count\";}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:5:\"value\";i:1;s:7:\"default\";a:0:{}s:9:\"operation\";s:2:\"!=\";}}i:1;a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:15:\"product_types.0\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:5:\"value\";s:9:\"downloads\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:2:\"!=\";}}}}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:29:\"woocommerce-services:shipping\";}i:2;O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"WooCommerce Tax\";s:11:\"description\";s:103:\"Get automated sales tax with <a href=\"https://woo.com/products/tax\" target=\"_blank\">WooCommerce Tax</a>\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:24:\"woocommerce-services:tax\";}i:3;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Jetpack\";s:11:\"description\";s:102:\"Enhance speed and security with <a href=\"https://woo.com/products/jetpack\" target=\"_blank\">Jetpack</a>\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:7:\"jetpack\";}}}}}s:14:\"is_built_by_wc\";b:0;s:14:\"min_wp_version\";s:3:\"6.0\";s:3:\"key\";s:7:\"jetpack\";}}}s:8:\"obw/grow\";O:8:\"stdClass\":3:{s:3:\"key\";s:8:\"obw/grow\";s:5:\"title\";s:15:\"Grow your store\";s:7:\"plugins\";a:4:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"MailPoet\";s:11:\"description\";s:107:\"Level up your email marketing with <a href=\"https://woo.com/products/mailpoet\" target=\"_blank\">MailPoet</a>\";s:10:\"manage_url\";s:35:\"admin.php?page=mailpoet-newsletters\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:8:\"mailpoet\";}}}}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:8:\"mailpoet\";}i:1;O:8:\"stdClass\":8:{s:4:\"name\";s:21:\"Google Listings & Ads\";s:11:\"description\";s:119:\"Drive sales with <a href=\"https://woo.com/products/google-listings-and-ads\" target=\"_blank\">Google Listings and Ads</a>\";s:9:\"image_url\";s:86:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/google.svg\";s:10:\"manage_url\";s:46:\"admin.php?page=wc-admin&path=%2Fgoogle%2Fstart\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google-listings-and-ads\";}}}}}s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.4\";s:3:\"key\";s:23:\"google-listings-and-ads\";}i:2;O:8:\"stdClass\":7:{s:4:\"name\";s:25:\"Pinterest for WooCommerce\";s:11:\"description\";s:76:\"Get your products in front of Pinners searching for ideas and things to buy.\";s:9:\"image_url\";s:89:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/pinterest.png\";s:10:\"manage_url\";s:51:\"admin.php?page=wc-admin&path=%2Fpinterest%2Flanding\";s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.3\";s:3:\"key\";s:25:\"pinterest-for-woocommerce\";}i:3;O:8:\"stdClass\":7:{s:4:\"name\";s:24:\"Facebook for WooCommerce\";s:11:\"description\";s:133:\"List products and create ads on Facebook and Instagram with <a href=\"https://woo.com/products/facebook/\">Facebook for WooCommerce</a>\";s:9:\"image_url\";s:88:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/facebook.png\";s:10:\"manage_url\";s:26:\"admin.php?page=wc-facebook\";s:10:\"is_visible\";b:0;s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:24:\"facebook-for-woocommerce\";}}}s:15:\"task-list/reach\";O:8:\"stdClass\":3:{s:3:\"key\";s:15:\"task-list/reach\";s:5:\"title\";s:22:\"Reach out to customers\";s:7:\"plugins\";a:3:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"MailPoet\";s:11:\"description\";s:111:\"Create and send purchase follow-up emails, newsletters, and promotional campaigns straight from your dashboard.\";s:9:\"image_url\";s:88:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/mailpoet.svg\";s:10:\"manage_url\";s:35:\"admin.php?page=mailpoet-newsletters\";s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:12:\"mailpoet:alt\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:9:\"Mailchimp\";s:11:\"description\";s:78:\"Send targeted campaigns, recover abandoned carts and much more with Mailchimp.\";s:9:\"image_url\";s:89:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/mailchimp.svg\";s:10:\"manage_url\";s:36:\"admin.php?page=mailchimp-woocommerce\";s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:25:\"mailchimp-for-woocommerce\";}i:2;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Klaviyo\";s:11:\"description\";s:138:\"Grow and retain customers with intelligent, impactful email and SMS marketing automation and a consolidated view of customer interactions.\";s:9:\"image_url\";s:87:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/klaviyo.png\";s:10:\"manage_url\";s:31:\"admin.php?page=klaviyo_settings\";s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:7:\"klaviyo\";}}}s:14:\"task-list/grow\";O:8:\"stdClass\":3:{s:3:\"key\";s:14:\"task-list/grow\";s:5:\"title\";s:15:\"Grow your store\";s:7:\"plugins\";a:4:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"Google Listings & Ads\";s:11:\"description\";s:134:\"Reach more shoppers and drive sales for your store. Integrate with Google to list your products for free and launch paid ad campaigns.\";s:9:\"image_url\";s:86:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/google.svg\";s:10:\"manage_url\";s:46:\"admin.php?page=wc-admin&path=%2Fgoogle%2Fstart\";s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:27:\"google-listings-and-ads:alt\";}i:1;O:8:\"stdClass\":7:{s:4:\"name\";s:22:\"TikTok for WooCommerce\";s:9:\"image_url\";s:86:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/tiktok.svg\";s:11:\"description\";s:118:\"Grow your online sales by promoting your products on TikTok to over one billion monthly active users around the world.\";s:10:\"manage_url\";s:21:\"admin.php?page=tiktok\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:40:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MY\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PH\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ID\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"VN\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"TH\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"KR\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IL\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RU\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"UA\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"TR\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SA\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BR\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}}}}s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:19:\"tiktok-for-business\";}i:2;O:8:\"stdClass\":6:{s:4:\"name\";s:25:\"Pinterest for WooCommerce\";s:11:\"description\";s:159:\"Get your products in front of Pinterest users searching for ideas and things to buy. Get started with Pinterest and make your entire product catalog browsable.\";s:9:\"image_url\";s:89:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/pinterest.png\";s:10:\"manage_url\";s:51:\"admin.php?page=wc-admin&path=%2Fpinterest%2Flanding\";s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:29:\"pinterest-for-woocommerce:alt\";}i:3;O:8:\"stdClass\":7:{s:4:\"name\";s:24:\"Facebook for WooCommerce\";s:11:\"description\";s:55:\"List products and create ads on Facebook and Instagram.\";s:9:\"image_url\";s:88:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/facebook.png\";s:10:\"manage_url\";s:26:\"admin.php?page=wc-facebook\";s:10:\"is_visible\";b:0;s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:28:\"facebook-for-woocommerce:alt\";}}}s:17:\"obw/core-profiler\";O:8:\"stdClass\":3:{s:3:\"key\";s:17:\"obw/core-profiler\";s:5:\"title\";s:15:\"Grow your store\";s:7:\"plugins\";a:8:{i:0;O:8:\"stdClass\":10:{s:4:\"name\";s:11:\"WooPayments\";s:11:\"description\";s:89:\"Securely accept payments and manage payment activity straight from your store\'s dashboard\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:39:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SI\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"is_built_by_wc\";b:1;s:14:\"min_wp_version\";s:3:\"5.9\";s:3:\"key\";s:20:\"woocommerce-payments\";s:5:\"label\";s:25:\"Get paid with WooPayments\";s:9:\"image_url\";s:102:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-woo.svg\";s:15:\"learn_more_link\";s:45:\"https://woo.com/products/woocommerce-payments\";s:16:\"install_priority\";i:5;}i:1;O:8:\"stdClass\":9:{s:4:\"name\";s:20:\"WooCommerce Shipping\";s:11:\"description\";s:76:\"Print USPS and DHL labels directly from your dashboard and save on shipping.\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:29:\"woocommerce-services:shipping\";s:5:\"label\";s:47:\"Print shipping labels with WooCommerce Shipping\";s:9:\"image_url\";s:102:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-woo.svg\";s:15:\"learn_more_link\";s:36:\"https://woo.com/woocommerce-shipping\";s:16:\"install_priority\";i:3;}i:2;O:8:\"stdClass\":10:{s:4:\"name\";s:7:\"Jetpack\";s:11:\"description\";s:84:\"Save time on content creation — unlock high-quality blog posts and pages using AI.\";s:10:\"is_visible\";b:1;s:14:\"is_built_by_wc\";b:0;s:14:\"min_wp_version\";s:3:\"6.0\";s:3:\"key\";s:7:\"jetpack\";s:5:\"label\";s:48:\"Boost content creation with Jetpack AI Assistant\";s:9:\"image_url\";s:106:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-jetpack.svg\";s:15:\"learn_more_link\";s:32:\"https://woo.com/products/jetpack\";s:16:\"install_priority\";i:8;}i:3;O:8:\"stdClass\":10:{s:4:\"name\";s:25:\"Pinterest for WooCommerce\";s:11:\"description\";s:56:\"Get your products in front of a highly engaged audience.\";s:9:\"image_url\";s:108:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-pinterest.svg\";s:10:\"manage_url\";s:51:\"admin.php?page=wc-admin&path=%2Fpinterest%2Flanding\";s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.3\";s:3:\"key\";s:25:\"pinterest-for-woocommerce\";s:5:\"label\";s:37:\"Showcase your products with Pinterest\";s:15:\"learn_more_link\";s:50:\"https://woo.com/products/pinterest-for-woocommerce\";s:16:\"install_priority\";i:2;}i:4;O:8:\"stdClass\":10:{s:4:\"name\";s:8:\"MailPoet\";s:11:\"description\";s:71:\"Send purchase follow-up emails, newsletters, and promotional campaigns.\";s:10:\"manage_url\";s:35:\"admin.php?page=mailpoet-newsletters\";s:10:\"is_visible\";b:1;s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:8:\"mailpoet\";s:5:\"label\";s:34:\"Reach your customers with MailPoet\";s:9:\"image_url\";s:107:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-mailpoet.svg\";s:15:\"learn_more_link\";s:33:\"https://woo.com/products/mailpoet\";s:16:\"install_priority\";i:7;}i:5;O:8:\"stdClass\":11:{s:4:\"name\";s:21:\"Google Listings & Ads\";s:11:\"description\";s:83:\"Reach millions of active shoppers across Google with free product listings and ads.\";s:9:\"image_url\";s:105:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-google.svg\";s:10:\"manage_url\";s:46:\"admin.php?page=wc-admin&path=%2Fgoogle%2Fstart\";s:10:\"is_visible\";b:1;s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.4\";s:3:\"key\";s:23:\"google-listings-and-ads\";s:5:\"label\";s:38:\"Drive sales with Google Listings & Ads\";s:15:\"learn_more_link\";s:48:\"https://woo.com/products/google-listings-and-ads\";s:16:\"install_priority\";i:6;}i:6;O:8:\"stdClass\":9:{s:4:\"name\";s:15:\"WooCommerce Tax\";s:11:\"description\";s:94:\"Automatically calculate how much sales tax should be collected – by city, country, or state.\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}}}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:24:\"woocommerce-services:tax\";s:5:\"label\";s:44:\"Get automated tax rates with WooCommerce Tax\";s:9:\"image_url\";s:102:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-woo.svg\";s:15:\"learn_more_link\";s:28:\"https://woo.com/products/tax\";s:16:\"install_priority\";i:4;}i:7;O:8:\"stdClass\":10:{s:4:\"name\";s:22:\"TikTok for WooCommerce\";s:9:\"image_url\";s:105:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-tiktok.svg\";s:11:\"description\";s:64:\"Create advertising campaigns and reach one billion global users.\";s:10:\"manage_url\";s:21:\"admin.php?page=tiktok\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:40:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MY\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PH\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ID\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"VN\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"TH\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"KR\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IL\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RU\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"UA\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"TR\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SA\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BR\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}}}}s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:19:\"tiktok-for-business\";s:5:\"label\";s:31:\"Create ad campaigns with TikTok\";s:15:\"learn_more_link\";s:47:\"https://woo.com/products/tiktok-for-woocommerce\";s:16:\"install_priority\";i:1;}}}}}','no'),(23456,'wcpay_was_in_use','no','yes'),(23468,'wc_remote_inbox_notifications_wca_updated','','no'),(23469,'woocommerce_attribute_lookup_enabled','yes','yes'),(23497,'secret_key','`GL4ZVj70}@VzYV!g>d8!.^W6>q,w}GSB.vcj}f`!(We`^G_AK,=L:3N y*fkGjG','no'),(23538,'wpr_plugin_sale_dismiss_notice','1','yes'),(23539,'wpr_plugin_update_dismiss_notice_1.3.80','1','yes'),(23544,'wpcf7_redirect_dismiss_banner','0','yes'),(23545,'wpcf7_redirect_version','3.0.1','yes'),(23546,'wpcf7_redirect_notifications','a:1:{s:28:\"notice-success wpcf7r-notice\";s:417:\"<p><span class=\"dashicons dashicons-feedback\"></span> <a href=\"https://wordpressdemo.subscriptionflow.com/wp-admin/admin.php?page=wpc7_redirect-addons\"> Redirection for Contact Form 7 - check out our new forms extensions - don\'t miss it!</a></p><p>Also, we will be happy if you can take a few moments and <a href=\"https://wordpress.org/support/plugin/wpcf7-redirect/reviews/\" target=\"_blank\">rate our plugin</a>.</p>\";}','yes'),(23547,'wpcf7_migration_completed','1','yes'),(24653,'ai1wm_secret_key','dpWs5v63AtZj','yes'),(24654,'ai1wm_status','a:2:{s:4:\"type\";s:8:\"download\";s:7:\"message\";s:408:\"<a href=\"https://wordpressdemo.subscriptionflow.com/wp-content/ai1wm-backups/wordpressdemo.subscriptionflow.com-20231023-065835-iwauo8.wpress\" class=\"ai1wm-button-green ai1wm-emphasize ai1wm-button-download\" title=\"wordpressdemo.subscriptionflow.com\" download=\"wordpressdemo.subscriptionflow.com-20231023-065835-iwauo8.wpress\"><span>Download wordpressdemo.subscriptionflow.com</span><em>Size: 190 MB</em></a>\";}','yes'),(24780,'_site_transient_ai1wm_last_check_for_updates','1705025399','no'),(24781,'ai1wm_updater','a:0:{}','yes'),(26310,'auto_core_update_failed','a:6:{s:9:\"attempted\";s:5:\"6.4.2\";s:7:\"current\";s:5:\"6.3.2\";s:10:\"error_code\";s:32:\"copy_failed_for_update_core_file\";s:10:\"error_data\";s:33:\"wp-admin/includes/update-core.php\";s:9:\"timestamp\";i:1701913742;s:5:\"retry\";b:0;}','no'),(28369,'woocommerce_paystack_settings','a:24:{s:7:\"enabled\";s:3:\"yes\";s:5:\"title\";s:18:\"Debit/Credit Cards\";s:11:\"description\";s:46:\"Make payment using your debit and credit cards\";s:8:\"testmode\";s:3:\"yes\";s:12:\"payment_page\";s:0:\"\";s:15:\"test_secret_key\";s:48:\"sk_test_d286e474b9fb318b66a087e5c8f9e3dacfd15ba2\";s:15:\"test_public_key\";s:48:\"pk_test_8d74ace4ed48e59a68272f6c34fabb7780425e71\";s:15:\"live_secret_key\";s:0:\"\";s:15:\"live_public_key\";s:0:\"\";s:18:\"autocomplete_order\";s:2:\"no\";s:26:\"remove_cancel_order_button\";s:2:\"no\";s:13:\"split_payment\";s:2:\"no\";s:15:\"subaccount_code\";s:0:\"\";s:32:\"split_payment_transaction_charge\";s:0:\"\";s:28:\"split_payment_charge_account\";s:0:\"\";s:11:\"saved_cards\";s:2:\"no\";s:15:\"custom_metadata\";s:2:\"no\";s:13:\"meta_order_id\";s:2:\"no\";s:9:\"meta_name\";s:2:\"no\";s:10:\"meta_email\";s:2:\"no\";s:10:\"meta_phone\";s:2:\"no\";s:20:\"meta_billing_address\";s:2:\"no\";s:21:\"meta_shipping_address\";s:2:\"no\";s:13:\"meta_products\";s:2:\"no\";}','yes'),(28374,'_transient_orders-transient-version','1700840648','yes'),(28479,'woocommerce_admin_last_orders_milestone','1','yes'),(28521,'woocommerce_sales_record_date','2023-11-22','yes'),(28522,'woocommerce_sales_record_amount','225','yes'),(29296,'fm_key','jGHpFAXzV6B0JPRgmCELxr5DZ','yes'),(29299,'filemanager_email_verified_1','yes','yes'),(29327,'cf7skins_version_installed','2.6.0','yes'),(29328,'cf7skins','a:6:{s:12:\"add_asterisk\";s:1:\"1\";s:12:\"color_scheme\";s:7:\"default\";s:6:\"export\";s:1:\"1\";s:11:\"delete_data\";b:0;s:15:\"show_copy_paste\";s:1:\"1\";s:9:\"show_name\";s:1:\"1\";}','yes'),(29413,'action_scheduler_migration_status','complete','yes'),(29419,'nb_cpf_options','a:12:{s:20:\"phone_defaultCountry\";s:0:\"\";s:19:\"phone_onlyCountries\";s:0:\"\";s:22:\"phone_excludeCountries\";s:0:\"\";s:24:\"phone_preferredCountries\";s:0:\"\";s:18:\"phone_nationalMode\";i:0;s:17:\"phone_auto_select\";i:0;s:10:\"ip_api_key\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:13:\"onlyCountries\";s:0:\"\";s:16:\"excludeCountries\";s:0:\"\";s:18:\"preferredCountries\";s:0:\"\";s:19:\"country_auto_select\";i:1;}','yes'),(32389,'elementor_pro_remote_info_api_data_3.7.7','a:2:{s:7:\"timeout\";i:1702735706;s:5:\"value\";s:42:\"{\"license\":\"valid\",\"expires\":\"01.01.2030\"}\";}','no'),(33547,'_transient_timeout_wc_term_counts','1706058151','no'),(33548,'_transient_wc_term_counts','a:13:{i:15;s:1:\"4\";i:17;s:1:\"0\";i:19;s:1:\"0\";i:22;s:1:\"0\";i:24;s:1:\"0\";i:25;s:1:\"0\";i:26;s:1:\"0\";i:32;s:1:\"3\";i:33;s:1:\"3\";i:34;s:1:\"0\";i:36;s:1:\"0\";i:37;s:1:\"0\";i:39;s:1:\"0\";}','no'),(34181,'_transient_timeout_wc_customer_bought_product_f113569df6c1e1a39fead2f4da4a8c24','1706466534','no'),(34182,'_transient_wc_customer_bought_product_f113569df6c1e1a39fead2f4da4a8c24','a:2:{s:7:\"version\";s:10:\"1700840648\";s:5:\"value\";a:0:{}}','no'),(34192,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:0;s:3:\"all\";i:0;s:9:\"moderated\";i:0;s:8:\"approved\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','yes'),(34828,'_transient_timeout_wc_shipping_method_count_legacy','1706951516','no'),(34829,'_transient_wc_shipping_method_count_legacy','a:2:{s:7:\"version\";s:10:\"1670336319\";s:5:\"value\";i:0;}','no'),(35137,'_transient_timeout_woocommerce_admin_payment_method_promotion_specs','1705222503','no'),(35138,'_transient_woocommerce_admin_payment_method_promotion_specs','a:1:{s:5:\"en_US\";a:2:{s:27:\"woocommerce_payments:woopay\";O:8:\"stdClass\":8:{s:2:\"id\";s:27:\"woocommerce_payments:woopay\";s:5:\"title\";s:20:\"WooCommerce Payments\";s:7:\"content\";s:393:\"Payments made simple — including WooPay, a new express checkout feature.<br/><br/>By using WooPayments you agree to the <a href=\"https://wordpress.com/tos/\" target=\"_blank\">Terms of Service</a> (including WooPay <a href=\"https://wordpress.com/tos/#more-woopay-specifically\" target=\"_blank\">merchant terms</a>) and <a href=\"https://automattic.com/privacy/\" target=\"_blank\">Privacy Policy</a>.\";s:5:\"image\";s:93:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"8.1.0-dev\";s:8:\"operator\";s:2:\">=\";}}s:9:\"sub_title\";s:825:\"<img class=\"wcpay-visa-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/visa.svg\" alt=\"Visa\"><img class=\"wcpay-mastercard-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/mastercard.svg\" alt=\"Mastercard\"><img class=\"wcpay-amex-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/amex.svg\" alt=\"Amex\"><img class=\"wcpay-googlepay-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/googlepay.svg\" alt=\"Googlepay\"><img class=\"wcpay-applepay-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/applepay.svg\" alt=\"Applepay\">\";s:15:\"additional_info\";O:8:\"stdClass\":1:{s:18:\"experiment_version\";s:2:\"v2\";}}s:20:\"woocommerce_payments\";O:8:\"stdClass\":8:{s:2:\"id\";s:20:\"woocommerce_payments\";s:5:\"title\";s:20:\"WooCommerce Payments\";s:7:\"content\";s:369:\"Payments made simple, with no monthly fees – designed exclusively for WooCommerce stores. Accept credit cards, debit cards, and other popular payment methods.<br/><br/>By clicking “Install”, you agree to the <a href=\"https://wordpress.com/tos/\" target=\"_blank\">Terms of Service</a> and <a href=\"https://automattic.com/privacy/\" target=\"_blank\">Privacy policy</a>.\";s:5:\"image\";s:93:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:39:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SI\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}}}}s:9:\"sub_title\";s:825:\"<img class=\"wcpay-visa-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/visa.svg\" alt=\"Visa\"><img class=\"wcpay-mastercard-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/mastercard.svg\" alt=\"Mastercard\"><img class=\"wcpay-amex-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/amex.svg\" alt=\"Amex\"><img class=\"wcpay-googlepay-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/googlepay.svg\" alt=\"Googlepay\"><img class=\"wcpay-applepay-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/applepay.svg\" alt=\"Applepay\">\";s:15:\"additional_info\";O:8:\"stdClass\":1:{s:18:\"experiment_version\";s:2:\"v2\";}}}}','no'),(35517,'_transient_timeout_wcpay_welcome_page_incentive','1705069336','no'),(35518,'_transient_wcpay_welcome_page_incentive','a:3:{s:9:\"incentive\";a:0:{}s:12:\"context_hash\";s:32:\"11d3983d58de88957710810667b33f21\";s:9:\"timestamp\";i:1704982936;}','no'),(35557,'_transient_timeout__woocommerce_helper_subscriptions','1705026299','no'),(35558,'_transient__woocommerce_helper_subscriptions','a:0:{}','no'),(35559,'_site_transient_timeout_theme_roots','1705027199','no'),(35560,'_site_transient_theme_roots','a:2:{s:25:\"royal-elementor-kit-child\";s:7:\"/themes\";s:19:\"royal-elementor-kit\";s:7:\"/themes\";}','no'),(35561,'_transient_timeout__woocommerce_helper_updates','1705068599','no'),(35562,'_transient__woocommerce_helper_updates','a:4:{s:4:\"hash\";s:32:\"d751713988987e9331980363e24189ce\";s:7:\"updated\";i:1705025399;s:8:\"products\";a:0:{}s:6:\"errors\";a:1:{i:0;s:10:\"http-error\";}}','no'),(35564,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1705025400;s:7:\"checked\";a:2:{s:25:\"royal-elementor-kit-child\";s:0:\"\";s:19:\"royal-elementor-kit\";s:6:\"1.0.98\";}s:8:\"response\";a:1:{s:19:\"royal-elementor-kit\";a:6:{s:5:\"theme\";s:19:\"royal-elementor-kit\";s:11:\"new_version\";s:7:\"1.0.116\";s:3:\"url\";s:49:\"https://wordpress.org/themes/royal-elementor-kit/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.116.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:3:\"5.2\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(35565,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1705025401;s:8:\"response\";a:9:{s:30:\"contact-form-7-skins/index.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:34:\"w.org/plugins/contact-form-7-skins\";s:4:\"slug\";s:20:\"contact-form-7-skins\";s:6:\"plugin\";s:30:\"contact-form-7-skins/index.php\";s:11:\"new_version\";s:5:\"2.6.1\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/contact-form-7-skins/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/contact-form-7-skins.2.6.1.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:73:\"https://ps.w.org/contact-form-7-skins/assets/icon-128x128.png?rev=1130890\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:75:\"https://ps.w.org/contact-form-7-skins/assets/banner-772x250.png?rev=1895035\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.3\";s:6:\"tested\";s:5:\"6.4.2\";s:12:\"requires_php\";s:3:\"7.4\";}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"5.8.6\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.8.6.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.2\";s:6:\"tested\";s:5:\"6.4.2\";s:12:\"requires_php\";s:3:\"7.4\";}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":12:{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.18.3\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.18.3.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:6:\"tested\";s:5:\"6.4.2\";s:12:\"requires_php\";s:3:\"7.3\";}s:43:\"miniorange-wp-as-saml-idp/MoIDPSettings.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:39:\"w.org/plugins/miniorange-wp-as-saml-idp\";s:4:\"slug\";s:25:\"miniorange-wp-as-saml-idp\";s:6:\"plugin\";s:43:\"miniorange-wp-as-saml-idp/MoIDPSettings.php\";s:11:\"new_version\";s:6:\"1.15.3\";s:3:\"url\";s:56:\"https://wordpress.org/plugins/miniorange-wp-as-saml-idp/\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/plugin/miniorange-wp-as-saml-idp.1.15.3.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:78:\"https://ps.w.org/miniorange-wp-as-saml-idp/assets/icon-128x128.png?rev=1336190\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:80:\"https://ps.w.org/miniorange-wp-as-saml-idp/assets/banner-772x250.png?rev=2903389\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.8\";s:6:\"tested\";s:5:\"6.4.2\";s:12:\"requires_php\";s:3:\"5.6\";s:14:\"upgrade_notice\";s:127:\"<ul>\n<li>Updated license plans.</li>\n<li>Updated certificate.</li>\n<li>Compatibility with WordPress 6.4 and PHP 8.2.</li>\n</ul>\";}s:29:\"woo-paystack/woo-paystack.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:26:\"w.org/plugins/woo-paystack\";s:4:\"slug\";s:12:\"woo-paystack\";s:6:\"plugin\";s:29:\"woo-paystack/woo-paystack.php\";s:11:\"new_version\";s:5:\"5.8.1\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/woo-paystack/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/woo-paystack.5.8.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/woo-paystack/assets/icon-256x256.png?rev=2974487\";s:2:\"1x\";s:65:\"https://ps.w.org/woo-paystack/assets/icon-256x256.png?rev=2974487\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:67:\"https://ps.w.org/woo-paystack/assets/banner-772x250.png?rev=2974487\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";s:6:\"tested\";s:5:\"6.4.2\";s:12:\"requires_php\";s:3:\"7.4\";}s:33:\"wpcf7-redirect/wpcf7-redirect.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/wpcf7-redirect\";s:4:\"slug\";s:14:\"wpcf7-redirect\";s:6:\"plugin\";s:33:\"wpcf7-redirect/wpcf7-redirect.php\";s:11:\"new_version\";s:5:\"3.1.2\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/wpcf7-redirect/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/wpcf7-redirect.3.1.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/wpcf7-redirect/assets/icon-256x256.png?rev=2415635\";s:2:\"1x\";s:67:\"https://ps.w.org/wpcf7-redirect/assets/icon-128x128.png?rev=2415635\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/wpcf7-redirect/assets/banner-1544x500.png?rev=2415635\";s:2:\"1x\";s:69:\"https://ps.w.org/wpcf7-redirect/assets/banner-772x250.png?rev=2415635\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.1\";s:6:\"tested\";s:5:\"6.4.2\";s:12:\"requires_php\";b:0;}s:37:\"royal-elementor-addons/wpr-addons.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:36:\"w.org/plugins/royal-elementor-addons\";s:4:\"slug\";s:22:\"royal-elementor-addons\";s:6:\"plugin\";s:37:\"royal-elementor-addons/wpr-addons.php\";s:11:\"new_version\";s:6:\"1.3.85\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/royal-elementor-addons/\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.85.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:75:\"https://ps.w.org/royal-elementor-addons/assets/icon-128x128.gif?rev=2604295\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/royal-elementor-addons/assets/banner-1544x500.png?rev=2782347\";s:2:\"1x\";s:77:\"https://ps.w.org/royal-elementor-addons/assets/banner-772x250.png?rev=2782347\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:82:\"https://ps.w.org/royal-elementor-addons/assets/banner-1544x500-rtl.png?rev=2782347\";s:2:\"1x\";s:81:\"https://ps.w.org/royal-elementor-addons/assets/banner-772x250-rtl.png?rev=2782347\";}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.4.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"8.4.0\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.4.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.gif?rev=2869506\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.gif?rev=2869506\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=3000842\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=3000842\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.3\";s:6:\"tested\";s:5:\"6.4.2\";s:12:\"requires_php\";s:3:\"7.4\";}s:29:\"wp-mail-smtp/wp_mail_smtp.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:26:\"w.org/plugins/wp-mail-smtp\";s:4:\"slug\";s:12:\"wp-mail-smtp\";s:6:\"plugin\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:11:\"new_version\";s:6:\"3.11.0\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wp-mail-smtp/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/wp-mail-smtp.3.11.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-256x256.png?rev=1755440\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-128x128.png?rev=1755440\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wp-mail-smtp/assets/banner-1544x500.jpg?rev=2811094\";s:2:\"1x\";s:67:\"https://ps.w.org/wp-mail-smtp/assets/banner-772x250.jpg?rev=2811094\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";s:6:\"tested\";s:5:\"6.4.2\";s:12:\"requires_php\";s:3:\"7.2\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:8:{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:3:\"5.3\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.5.3.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.79\";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.79.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:33:\"classic-editor/classic-editor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/classic-editor\";s:4:\"slug\";s:14:\"classic-editor\";s:6:\"plugin\";s:33:\"classic-editor/classic-editor.php\";s:11:\"new_version\";s:5:\"1.6.3\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/classic-editor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/classic-editor.1.6.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-256x256.png?rev=1998671\";s:2:\"1x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-128x128.png?rev=1998671\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/classic-editor/assets/banner-1544x500.png?rev=1998671\";s:2:\"1x\";s:69:\"https://ps.w.org/classic-editor/assets/banner-772x250.png?rev=1998676\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:73:\"country-phone-field-contact-form-7/country-phone-field-contact-form-7.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:48:\"w.org/plugins/country-phone-field-contact-form-7\";s:4:\"slug\";s:34:\"country-phone-field-contact-form-7\";s:6:\"plugin\";s:73:\"country-phone-field-contact-form-7/country-phone-field-contact-form-7.php\";s:11:\"new_version\";s:5:\"2.4.6\";s:3:\"url\";s:65:\"https://wordpress.org/plugins/country-phone-field-contact-form-7/\";s:7:\"package\";s:77:\"https://downloads.wordpress.org/plugin/country-phone-field-contact-form-7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:87:\"https://ps.w.org/country-phone-field-contact-form-7/assets/icon-256x256.png?rev=2064274\";s:2:\"1x\";s:87:\"https://ps.w.org/country-phone-field-contact-form-7/assets/icon-128x128.png?rev=2064274\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.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:53:\"wp-child-theme-generator/wp-child-theme-generator.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"w.org/plugins/wp-child-theme-generator\";s:4:\"slug\";s:24:\"wp-child-theme-generator\";s:6:\"plugin\";s:53:\"wp-child-theme-generator/wp-child-theme-generator.php\";s:11:\"new_version\";s:5:\"1.0.8\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/wp-child-theme-generator/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/wp-child-theme-generator.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/wp-child-theme-generator/assets/icon-256x256.png?rev=1456710\";s:2:\"1x\";s:77:\"https://ps.w.org/wp-child-theme-generator/assets/icon-128x128.png?rev=1456710\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:79:\"https://ps.w.org/wp-child-theme-generator/assets/banner-772x250.png?rev=1456710\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.5\";}s:39:\"wp-file-manager/file_folder_manager.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/wp-file-manager\";s:4:\"slug\";s:15:\"wp-file-manager\";s:6:\"plugin\";s:39:\"wp-file-manager/file_folder_manager.php\";s:11:\"new_version\";s:5:\"7.2.1\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/wp-file-manager/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/wp-file-manager.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/wp-file-manager/assets/icon-128x128.png?rev=2491299\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/wp-file-manager/assets/banner-772x250.jpg?rev=2491299\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";}s:31:\"elementor-pro/elementor-pro.php\";O:8:\"stdClass\":3:{s:7:\"license\";s:5:\"valid\";s:7:\"expires\";s:10:\"01.01.2030\";s:6:\"plugin\";s:31:\"elementor-pro/elementor-pro.php\";}}s:7:\"checked\";a:1:{s:31:\"elementor-pro/elementor-pro.php\";s:5:\"3.7.7\";}}','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_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=4368 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_postmeta` -- LOCK TABLES `wp_postmeta` WRITE; /*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */; INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(3,5,'_elementor_edit_mode','builder'),(4,5,'_elementor_template_type','kit'),(6,6,'_form','<label> Your name\n [text* your-name] </label>\n\n<label> Your email\n [email* your-email] </label>\n\n<label> Subject\n [text* your-subject] </label>\n\n<label> Your message (optional)\n [textarea your-message] </label>\n\n[submit \"Submit\"]'),(7,6,'_mail','a:8:{s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:60:\"[_site_title] <wordpress@wordpressdemo.subscriptionflow.com>\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(8,6,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:60:\"[_site_title] <wordpress@wordpressdemo.subscriptionflow.com>\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(9,6,'_messages','a:12:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:27:\"Please fill out this field.\";s:16:\"invalid_too_long\";s:32:\"This field has a too long input.\";s:17:\"invalid_too_short\";s:33:\"This field has a too short input.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:31:\"The uploaded file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";}'),(10,6,'_additional_settings',''),(11,6,'_locale','en_US'),(12,7,'_wp_attached_file','woocommerce-placeholder.png'),(13,7,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"woocommerce-placeholder.png\";s:8:\"filesize\";i:102644;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11776;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2273;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36138;}s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11776;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"woocommerce-placeholder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:92539;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4209;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56337;}}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:{}}}'),(157,1884,'_elementor_edit_mode','builder'),(158,1884,'_elementor_template_type','kit'),(159,1884,'_elementor_version','3.7.0'),(160,1884,'_wp_page_template','default'),(161,1884,'_elementor_page_settings','a:11:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:16:\"Woocommerce Shop\";s:16:\"site_description\";s:28:\"Just another Demo Sites site\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:18:\"active_breakpoints\";a:3:{i:0;s:15:\"viewport_mobile\";i:1;s:15:\"viewport_tablet\";i:2;s:15:\"viewport_laptop\";}s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;}'),(162,1884,'_elementor_data','[]'),(163,1884,'_elementor_page_assets','a:0:{}'),(166,18,'_elementor_edit_mode','builder'),(167,18,'_elementor_template_type','wp-page'),(168,18,'_elementor_version','3.9.0'),(169,18,'_wp_page_template','elementor_canvas'),(170,18,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"abc3894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscription Management Software\",\"align\":\"center\",\"title_color\":\"#000000B5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72cd62d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/plans\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Magazine\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]},\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/product\\/discounted-partner-member\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"eCommerce\",\"content_title_tag\":\"h2\",\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/demo-shop\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Membership\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]},\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/membership\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(171,18,'_elementor_page_assets','a:0:{}'),(229,1158,'_elementor_edit_mode','builder'),(230,1158,'_elementor_template_type','wp-page'),(231,1158,'_elementor_version','3.6.4'),(232,1158,'_wp_page_template','elementor_canvas'),(233,1158,'_elementor_data','a:8:{i:0;a:5:{s:2:\"id\";s:7:\"3275fb5\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:12:{s:13:\"custom_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:408;s:5:\"sizes\";a:0:{}}s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:4:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:19:\"background_position\";s:13:\"center center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"e4713d4\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"cc0f674\";}}s:13:\"content_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1600;s:5:\"sizes\";a:0:{}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:3:\"100\";s:5:\"right\";i:0;s:6:\"bottom\";s:3:\"100\";s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:13:\"margin_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"50\";s:5:\"right\";i:0;s:6:\"bottom\";s:2:\"50\";s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:3:\"100\";s:5:\"right\";i:0;s:6:\"bottom\";s:1:\"0\";s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"1d96d2a\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:9:{s:12:\"_column_size\";i:100;s:12:\"_inline_size\";N;s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:4:{s:3:\"url\";s:80:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-29.jpg\";s:2:\"id\";i:1285;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:19:\"background_position\";s:13:\"center center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";s:29:\"background_overlay_background\";s:7:\"classic\";s:24:\"background_overlay_color\";s:9:\"#212121C4\";}s:8:\"elements\";a:3:{i:0;a:5:{s:2:\"id\";s:7:\"42b2bcd\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:1:{s:5:\"space\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:150;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:6:\"spacer\";}i:1;a:5:{s:2:\"id\";s:7:\"e067e97\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:8:{s:5:\"title\";s:8:\"About Us\";s:5:\"align\";s:6:\"center\";s:11:\"title_color\";s:7:\"#FFFFFF\";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:70;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}i:2;a:5:{s:2:\"id\";s:7:\"b5362e2\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:1:{s:5:\"space\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:150;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:6:\"spacer\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}i:1;a:5:{s:2:\"id\";s:7:\"dfeb6b3\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:5:{s:13:\"content_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:897;s:5:\"sizes\";a:0:{}}s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"c0d41fb\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"21a06a7\";}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:3:\"100\";s:5:\"right\";i:0;s:6:\"bottom\";s:1:\"0\";s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"50\";s:5:\"right\";i:0;s:6:\"bottom\";s:2:\"50\";s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"8ee6fad\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:2:{s:12:\"_column_size\";i:100;s:12:\"_inline_size\";N;}s:8:\"elements\";a:3:{i:0;a:5:{s:2:\"id\";s:7:\"e0c3ecf\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:8:{s:5:\"title\";s:19:\"Kagon Brand History\";s:5:\"align\";s:6:\"center\";s:11:\"title_color\";s:7:\"#222222\";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:30;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}i:1;a:5:{s:2:\"id\";s:7:\"3b83f3c\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:7:{s:6:\"editor\";s:567:\"<p>Dwelling and speedily ignorant any steepest. Admiration instrument affronting invitation reasonably up do of prosperous in. Shy saw declared age debating ecstatic man. Call in so want pure rank am dear were. Remarkably to continuing in surrounded diminution on. In unfeeling existence objection immediate repulsive on he in. Imprudence comparison uncommonly me he difficulty diminution resolution. Likewise proposal differed scarcely dwelling as on raillery. September few dependent extremity own continued and ten prevailed attending. Early to weeks we could.</p>\";s:5:\"align\";s:6:\"center\";s:10:\"text_color\";s:7:\"#777777\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:11:\"text-editor\";}i:2;a:5:{s:2:\"id\";s:7:\"f26fe03\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:5:{s:5:\"image\";a:4:{s:3:\"url\";s:95:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/genevieve-whittington.png\";s:2:\"id\";i:1287;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:10:\"image_size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}s:12:\"width_mobile\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:62;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:5:\"image\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}i:2;a:5:{s:2:\"id\";s:7:\"0c9680d\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:8:{s:9:\"structure\";s:2:\"20\";s:16:\"background_color\";s:7:\"#F5F7F9\";s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"d496c98\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"7ba5374\";}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:3:\"100\";s:5:\"right\";i:0;s:6:\"bottom\";s:1:\"0\";s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"50\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"50\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:3:\"gap\";s:4:\"wide\";s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";i:0;s:6:\"bottom\";s:1:\"0\";s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:2:{i:0;a:5:{s:2:\"id\";s:7:\"0c46290\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:3:{s:12:\"_column_size\";i:50;s:12:\"_inline_size\";N;s:19:\"_inline_size_tablet\";i:100;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"bf1d924\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:1:{s:5:\"image\";a:4:{s:3:\"url\";s:80:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-32.jpg\";s:2:\"id\";i:1548;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:5:\"image\";}}s:7:\"isInner\";b:0;}i:1;a:5:{s:2:\"id\";s:7:\"d2f2c4f\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:3:{s:12:\"_column_size\";i:50;s:12:\"_inline_size\";N;s:19:\"_inline_size_tablet\";i:100;}s:8:\"elements\";a:6:{i:0;a:5:{s:2:\"id\";s:7:\"2cc2699\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:8:{s:5:\"title\";s:11:\"What We Do?\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#222222\";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:30;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}i:1;a:5:{s:2:\"id\";s:7:\"ca778ed\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:7:{s:6:\"editor\";s:240:\"<p>Dwelling and speedily ignorant any steepest. Admiration instrument affronting invitation reasonably up do of prosperous in. Shy saw declared age debating ecstatic man. Call in so want pure rank am dear were. Remarkably to continuing.</p>\";s:5:\"align\";s:4:\"left\";s:10:\"text_color\";s:7:\"#777777\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:11:\"text-editor\";}i:2;a:5:{s:2:\"id\";s:7:\"621a1ad\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:19:{s:13:\"counter_value\";i:90;s:5:\"title\";s:9:\"One Piece\";s:14:\"title_position\";s:7:\"outside\";s:16:\"counter_position\";s:7:\"outside\";s:14:\"counter_suffix\";s:1:\"%\";s:9:\"line_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:16:\"general_bg_color\";s:7:\"#F4F4F4\";s:26:\"prline_bg_color_background\";s:7:\"classic\";s:21:\"prline_bg_color_color\";s:7:\"#FF4F40\";s:11:\"title_color\";s:7:\"#777777\";s:27:\"title_typography_typography\";s:6:\"custom\";s:28:\"title_typography_font_family\";s:7:\"Poppins\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";s:3:\"400\";s:13:\"counter_color\";s:7:\"#777777\";s:29:\"counter_typography_typography\";s:6:\"custom\";s:30:\"counter_typography_font_family\";s:7:\"Poppins\";s:28:\"counter_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:30:\"counter_typography_font_weight\";s:3:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:16:\"wpr-progress-bar\";}i:3;a:5:{s:2:\"id\";s:7:\"e459934\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:19:{s:13:\"counter_value\";i:50;s:5:\"title\";s:6:\"Luxury\";s:14:\"title_position\";s:7:\"outside\";s:16:\"counter_position\";s:7:\"outside\";s:14:\"counter_suffix\";s:1:\"%\";s:9:\"line_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:16:\"general_bg_color\";s:7:\"#F4F4F4\";s:26:\"prline_bg_color_background\";s:7:\"classic\";s:21:\"prline_bg_color_color\";s:7:\"#FF4F40\";s:11:\"title_color\";s:7:\"#777777\";s:27:\"title_typography_typography\";s:6:\"custom\";s:28:\"title_typography_font_family\";s:7:\"Poppins\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";s:3:\"400\";s:13:\"counter_color\";s:7:\"#777777\";s:29:\"counter_typography_typography\";s:6:\"custom\";s:30:\"counter_typography_font_family\";s:7:\"Poppins\";s:28:\"counter_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:30:\"counter_typography_font_weight\";s:3:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:16:\"wpr-progress-bar\";}i:4;a:5:{s:2:\"id\";s:7:\"de5b9c6\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:19:{s:13:\"counter_value\";i:75;s:5:\"title\";s:8:\"Tropical\";s:14:\"title_position\";s:7:\"outside\";s:16:\"counter_position\";s:7:\"outside\";s:14:\"counter_suffix\";s:1:\"%\";s:9:\"line_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:16:\"general_bg_color\";s:7:\"#F4F4F4\";s:26:\"prline_bg_color_background\";s:7:\"classic\";s:21:\"prline_bg_color_color\";s:7:\"#FF4F40\";s:11:\"title_color\";s:7:\"#777777\";s:27:\"title_typography_typography\";s:6:\"custom\";s:28:\"title_typography_font_family\";s:7:\"Poppins\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";s:3:\"400\";s:13:\"counter_color\";s:7:\"#777777\";s:29:\"counter_typography_typography\";s:6:\"custom\";s:30:\"counter_typography_font_family\";s:7:\"Poppins\";s:28:\"counter_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:30:\"counter_typography_font_weight\";s:3:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:16:\"wpr-progress-bar\";}i:5;a:5:{s:2:\"id\";s:7:\"03cb071\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:19:{s:13:\"counter_value\";i:35;s:5:\"title\";s:4:\"Sets\";s:14:\"title_position\";s:7:\"outside\";s:16:\"counter_position\";s:7:\"outside\";s:14:\"counter_suffix\";s:1:\"%\";s:9:\"line_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:16:\"general_bg_color\";s:7:\"#F4F4F4\";s:26:\"prline_bg_color_background\";s:7:\"classic\";s:21:\"prline_bg_color_color\";s:7:\"#FF4F40\";s:11:\"title_color\";s:7:\"#777777\";s:27:\"title_typography_typography\";s:6:\"custom\";s:28:\"title_typography_font_family\";s:7:\"Poppins\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";s:3:\"400\";s:13:\"counter_color\";s:7:\"#777777\";s:29:\"counter_typography_typography\";s:6:\"custom\";s:30:\"counter_typography_font_family\";s:7:\"Poppins\";s:28:\"counter_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:30:\"counter_typography_font_weight\";s:3:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:16:\"wpr-progress-bar\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}i:3;a:5:{s:2:\"id\";s:7:\"e9f3040\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:4:{s:6:\"layout\";s:10:\"full_width\";s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"a49e6b3\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"d3f4d13\";}}s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"30\";s:5:\"right\";i:0;s:6:\"bottom\";s:2:\"30\";s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"9ea0c7d\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:2:{s:12:\"_column_size\";i:100;s:12:\"_inline_size\";N;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"282108f\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:3:{s:4:\"text\";s:7:\"Divider\";s:5:\"color\";s:7:\"#E8E8E8\";s:3:\"gap\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"divider\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}i:4;a:5:{s:2:\"id\";s:7:\"86156e5\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:9:{s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"4d16aa6\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"fc42786\";}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:3:\"100\";s:5:\"right\";i:0;s:6:\"bottom\";s:1:\"0\";s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}s:16:\"background_image\";a:4:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:19:\"background_position\";s:13:\"center center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";s:13:\"content_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1600;s:5:\"sizes\";a:0:{}}s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"50\";s:5:\"right\";i:0;s:6:\"bottom\";s:2:\"50\";s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"4a5e8c2\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:8:{s:12:\"_column_size\";i:100;s:12:\"_inline_size\";N;s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:4:{s:3:\"url\";s:80:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-31.jpg\";s:2:\"id\";i:1375;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:19:\"background_position\";s:13:\"center center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:3:\"100\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:3:\"100\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"81b7712\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:3:{s:13:\"content_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:847;s:5:\"sizes\";a:0:{}}s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"115261b\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"f4c18ec\";}}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"b77b4ca\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:2:{s:12:\"_column_size\";i:100;s:12:\"_inline_size\";N;}s:8:\"elements\";a:2:{i:0;a:5:{s:2:\"id\";s:7:\"997cb1a\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:9:{s:5:\"title\";s:26:\"Frequently Asked Questions\";s:5:\"align\";s:6:\"center\";s:11:\"title_color\";s:7:\"#FFFFFF\";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:30;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;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:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}i:1;a:5:{s:2:\"id\";s:7:\"6c38270\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:26:{s:4:\"tabs\";a:5:{i:0;a:3:{s:9:\"tab_title\";s:39:\"Can I purchase a return shipping label?\";s:11:\"tab_content\";s:654:\"<p class=\"hc-collapse Can I purchase a return shipping label?\">Yes! Fashion Nova offers return shipping labels for US customers. Using return shipping labels is the recommended way to return your item to Fashion Nova, as you will be able to track your return and receive your credit much more quickly than if you were to send your return back yourself.</p><p class=\"hc-collapse Can I purchase a return shipping label?\">Return shipping labels can be purchased for $3.99 if you are returning a single item or for $7.99 if you are returning multiple items. Return shipping labels can be purchased and all returns can be submitted in our Returns Portal.</p>\";s:3:\"_id\";s:7:\"96b82d7\";}i:1;a:3:{s:9:\"tab_title\";s:21:\"Can I exchange items?\";s:11:\"tab_content\";s:206:\"<p>We do not offer exchanges but we welcome you to return your item(s) by mail in accordance with our Return Policy by using our online returns portal and repurchasing any available item(s) on our site.</p>\";s:3:\"_id\";s:7:\"8babe69\";}i:2;a:3:{s:9:\"tab_title\";s:59:\"Should I know anything else about the Online Return Policy?\";s:11:\"tab_content\";s:806:\"<ul class=\"hc-collapse Should I know anything else about the Online Return Policy?\"><li>Items must be unworn, unwashed, and have original tags attached and returned in their original packaging.</li><li>We are not liable for any return packages that may become lost or stolen in-transit. Please keep your proof of postage and/or return tracking number when shipping back your returns.</li><li>All returns must include an order packing slip or return invoice from Online Return Portal that clearly indicates which items are being returned. <b>If this is not filled out correctly, your return may experience issues in processing.</b></li><li>Damaged, defective, or incorrect items must be reported within 14 days of delivery.</li><li>Return drop-offs are not accepted at our DC or corporate office.</li></ul>\";s:3:\"_id\";s:7:\"8f3a09a\";}i:3;a:3:{s:9:\"tab_title\";s:33:\"What is the Store Returns Policy?\";s:11:\"tab_content\";s:632:\"<p class=\"hc-collapse What is the Store Returns Policy?\">We do not provide cash refunds. We will accept exchanges within 30 days of the original purchase date with a valid receipt and all tags attached. We will accept returns for store credit only within 30 days of the original purchase date with a valid receipt and all tags attached. The following items are considered \"Final Sale\" and cannot be exchanged in-store:</p><ul class=\"hc-collapse What is the Store Returns Policy?\"><li>Dresses</li><li>Bodysuits</li><li>Accessories</li><li>Shoes</li><li>Swim & Lingerie</li><li>Beauty</li><li>NovaKids</li><li>Sale Items</li></ul>\";s:3:\"_id\";s:7:\"7a3fa99\";}i:4;a:3:{s:9:\"tab_title\";s:26:\"What items are final sale?\";s:11:\"tab_content\";s:257:\"<p>All items ending in $.00, .96, .97, and .98, bodysuits, swimwear, undergarments, beauty products, cosmetics, accessories, and \"Party Wear\" (such as Halloween costumes) are considered final sale, non-returnable and cannot be returned for store credit.</p>\";s:3:\"_id\";s:7:\"6895569\";}}s:13:\"selected_icon\";a:2:{s:5:\"value\";s:17:\"fas fa-caret-down\";s:7:\"library\";s:8:\"fa-solid\";}s:20:\"selected_active_icon\";a:2:{s:5:\"value\";s:15:\"fas fa-caret-up\";s:7:\"library\";s:8:\"fa-solid\";}s:12:\"border_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:11:\"title_color\";s:7:\"#222222\";s:16:\"tab_active_color\";s:7:\"#FF4F40\";s:27:\"title_typography_typography\";s:6:\"custom\";s:28:\"title_typography_font_family\";s:7:\"Poppins\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";s:3:\"400\";s:10:\"icon_align\";s:5:\"right\";s:13:\"content_color\";s:7:\"#777777\";s:29:\"content_typography_typography\";s:6:\"custom\";s:30:\"content_typography_font_family\";s:4:\"Lato\";s:28:\"content_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:30:\"content_typography_font_weight\";s:3:\"400\";s:8:\"_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"20\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:2:\"20\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:1;}s:14:\"_border_border\";s:5:\"solid\";s:13:\"_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:13:\"_border_color\";s:7:\"#E8E8E8\";s:14:\"_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"10\";s:5:\"right\";s:2:\"10\";s:6:\"bottom\";s:2:\"10\";s:4:\"left\";s:2:\"10\";s:8:\"isLinked\";b:1;}s:22:\"_background_background\";s:7:\"classic\";s:17:\"_background_color\";s:7:\"#FFFFFF\";s:7:\"_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:33:\"title_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:35:\"content_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:9:\"accordion\";}}s:7:\"isInner\";b:1;}}s:7:\"isInner\";b:1;}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}i:5;a:5:{s:2:\"id\";s:7:\"b79d163\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:8:{s:9:\"structure\";s:2:\"70\";s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"a4ec657\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"c5ee97b\";}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:3:\"100\";s:5:\"right\";i:0;s:6:\"bottom\";s:1:\"0\";s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}s:13:\"content_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1600;s:5:\"sizes\";a:0:{}}s:3:\"gap\";s:5:\"wider\";s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"30\";s:5:\"right\";i:0;s:6:\"bottom\";s:1:\"0\";s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}s:6:\"layout\";s:10:\"full_width\";}s:8:\"elements\";a:7:{i:0;a:5:{s:2:\"id\";s:7:\"df7dcc0\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:4:{s:12:\"_column_size\";i:14;s:12:\"_inline_size\";N;s:16:\"content_position\";s:6:\"center\";s:19:\"_inline_size_tablet\";i:33;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"4f28422\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:5:{s:5:\"image\";a:4:{s:3:\"url\";s:83:\"https://nicktesting.kinsta.cloud/shopdiko1/wp-content/uploads/2022/06/dgsggfg-1.png\";s:2:\"id\";i:441;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:5:\"width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:74;s:5:\"sizes\";a:0:{}}s:12:\"width_tablet\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:12:\"width_mobile\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:7:\"opacity\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.31;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:5:\"image\";}}s:7:\"isInner\";b:0;}i:1;a:5:{s:2:\"id\";s:7:\"ffd1c25\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:4:{s:12:\"_column_size\";i:14;s:12:\"_inline_size\";N;s:16:\"content_position\";s:6:\"center\";s:19:\"_inline_size_tablet\";i:33;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"9e2757a\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:5:{s:5:\"image\";a:4:{s:3:\"url\";s:86:\"https://nicktesting.kinsta.cloud/shopdiko1/wp-content/uploads/2022/06/Asset-1ghf-1.png\";s:2:\"id\";i:443;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:5:\"width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:74;s:5:\"sizes\";a:0:{}}s:12:\"width_tablet\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:12:\"width_mobile\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:7:\"opacity\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.31;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:5:\"image\";}}s:7:\"isInner\";b:0;}i:2;a:5:{s:2:\"id\";s:7:\"c6313b3\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:4:{s:12:\"_column_size\";i:14;s:12:\"_inline_size\";N;s:16:\"content_position\";s:6:\"center\";s:19:\"_inline_size_tablet\";i:33;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"8cad5c8\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:5:{s:5:\"image\";a:4:{s:3:\"url\";s:87:\"https://nicktesting.kinsta.cloud/shopdiko1/wp-content/uploads/2022/06/Assfgdget-1-1.png\";s:2:\"id\";i:440;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:5:\"width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:74;s:5:\"sizes\";a:0:{}}s:12:\"width_tablet\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:12:\"width_mobile\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:7:\"opacity\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.31;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:5:\"image\";}}s:7:\"isInner\";b:0;}i:3;a:5:{s:2:\"id\";s:7:\"5d6d2c7\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:4:{s:12:\"_column_size\";i:14;s:12:\"_inline_size\";N;s:16:\"content_position\";s:6:\"center\";s:19:\"_inline_size_tablet\";i:25;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"8436088\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:5:{s:5:\"image\";a:4:{s:3:\"url\";s:89:\"https://nicktesting.kinsta.cloud/shopdiko1/wp-content/uploads/2022/06/Asset-1fgdgfd-1.png\";s:2:\"id\";i:439;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:5:\"width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:70;s:5:\"sizes\";a:0:{}}s:12:\"width_tablet\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:12:\"width_mobile\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:7:\"opacity\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.31;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:5:\"image\";}}s:7:\"isInner\";b:0;}i:4;a:5:{s:2:\"id\";s:7:\"c856bad\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:4:{s:12:\"_column_size\";i:14;s:12:\"_inline_size\";N;s:16:\"content_position\";s:6:\"center\";s:19:\"_inline_size_tablet\";i:25;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"66e4190\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:5:{s:5:\"image\";a:4:{s:3:\"url\";s:83:\"https://nicktesting.kinsta.cloud/shopdiko1/wp-content/uploads/2022/06/dgsggfg-1.png\";s:2:\"id\";i:441;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:5:\"width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:74;s:5:\"sizes\";a:0:{}}s:12:\"width_tablet\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:12:\"width_mobile\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:7:\"opacity\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.31;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:5:\"image\";}}s:7:\"isInner\";b:0;}i:5;a:5:{s:2:\"id\";s:7:\"afd9267\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:4:{s:12:\"_column_size\";i:14;s:12:\"_inline_size\";N;s:16:\"content_position\";s:6:\"center\";s:19:\"_inline_size_tablet\";i:25;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"bc7bfab\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:5:{s:5:\"image\";a:4:{s:3:\"url\";s:83:\"https://nicktesting.kinsta.cloud/shopdiko1/wp-content/uploads/2022/06/Asset-1-2.png\";s:2:\"id\";i:438;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:5:\"width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:74;s:5:\"sizes\";a:0:{}}s:12:\"width_tablet\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:12:\"width_mobile\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:7:\"opacity\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.31;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:5:\"image\";}}s:7:\"isInner\";b:0;}i:6;a:5:{s:2:\"id\";s:7:\"4486aaa\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:4:{s:12:\"_column_size\";i:14;s:12:\"_inline_size\";N;s:16:\"content_position\";s:6:\"center\";s:19:\"_inline_size_tablet\";i:25;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"e6f9b63\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:5:{s:5:\"image\";a:4:{s:3:\"url\";s:87:\"https://nicktesting.kinsta.cloud/shopdiko1/wp-content/uploads/2022/06/Assfgdget-1-1.png\";s:2:\"id\";i:440;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:5:\"width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:74;s:5:\"sizes\";a:0:{}}s:12:\"width_tablet\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:12:\"width_mobile\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:7:\"opacity\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.31;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:5:\"image\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}i:6;a:5:{s:2:\"id\";s:7:\"afed214\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:5:{s:13:\"content_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1600;s:5:\"sizes\";a:0:{}}s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"e2d8e01\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"bbd207e\";}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:3:\"100\";s:5:\"right\";i:0;s:6:\"bottom\";s:3:\"100\";s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"50\";s:5:\"right\";i:0;s:6:\"bottom\";s:2:\"50\";s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"6550e47\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:2:{s:12:\"_column_size\";i:100;s:12:\"_inline_size\";N;}s:8:\"elements\";a:2:{i:0;a:5:{s:2:\"id\";s:7:\"2e1effd\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:8:{s:5:\"title\";s:18:\"Kagon Team Members\";s:5:\"align\";s:6:\"center\";s:11:\"title_color\";s:7:\"#222222\";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:30;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}i:1;a:5:{s:2:\"id\";s:7:\"822eece\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:4:{s:13:\"content_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1388;s:5:\"sizes\";a:0:{}}s:9:\"structure\";s:2:\"40\";s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"bcf3534\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"907eb35\";}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"30\";s:5:\"right\";i:0;s:6:\"bottom\";s:1:\"0\";s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:4:{i:0;a:5:{s:2:\"id\";s:7:\"cca919c\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:3:{s:12:\"_column_size\";i:25;s:12:\"_inline_size\";N;s:19:\"_inline_size_tablet\";i:50;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"a02cc75\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:17:{s:11:\"member_name\";s:18:\"Aniyah O\'Gallagher\";s:10:\"member_job\";s:12:\"Kagon Tailor\";s:18:\"member_description\";s:0:\"\";s:15:\"member_btn_text\";s:8:\"About Me\";s:12:\"member_image\";a:4:{s:3:\"url\";s:80:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-34.jpg\";s:2:\"id\";i:1587;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:14:\"member_divider\";s:0:\"\";s:12:\"social_media\";s:0:\"\";s:15:\"content_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"20\";s:5:\"right\";s:2:\"15\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"15\";s:8:\"isLinked\";b:0;}s:26:\"name_typography_typography\";s:6:\"custom\";s:27:\"name_typography_font_family\";s:7:\"Poppins\";s:25:\"name_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:27:\"name_typography_font_weight\";s:3:\"400\";s:9:\"job_color\";s:7:\"#FF4F40\";s:25:\"job_typography_typography\";s:6:\"custom\";s:26:\"job_typography_font_family\";s:4:\"Lato\";s:24:\"job_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:26:\"job_typography_font_weight\";s:3:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:15:\"wpr-team-member\";}}s:7:\"isInner\";b:1;}i:1;a:5:{s:2:\"id\";s:7:\"cfaa7b1\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:3:{s:12:\"_column_size\";i:25;s:12:\"_inline_size\";N;s:19:\"_inline_size_tablet\";i:50;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"0f0db3a\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:17:{s:11:\"member_name\";s:16:\"Harpreet Padilla\";s:10:\"member_job\";s:13:\"Kagon Founder\";s:18:\"member_description\";s:0:\"\";s:15:\"member_btn_text\";s:8:\"About Me\";s:12:\"member_image\";a:4:{s:3:\"url\";s:80:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-36.jpg\";s:2:\"id\";i:1589;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:14:\"member_divider\";s:0:\"\";s:12:\"social_media\";s:0:\"\";s:15:\"content_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"20\";s:5:\"right\";s:2:\"15\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"15\";s:8:\"isLinked\";b:0;}s:26:\"name_typography_typography\";s:6:\"custom\";s:27:\"name_typography_font_family\";s:7:\"Poppins\";s:25:\"name_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:27:\"name_typography_font_weight\";s:3:\"400\";s:9:\"job_color\";s:7:\"#FF4F40\";s:25:\"job_typography_typography\";s:6:\"custom\";s:26:\"job_typography_font_family\";s:4:\"Lato\";s:24:\"job_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:26:\"job_typography_font_weight\";s:3:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:15:\"wpr-team-member\";}}s:7:\"isInner\";b:1;}i:2;a:5:{s:2:\"id\";s:7:\"c05587e\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:3:{s:12:\"_column_size\";i:25;s:12:\"_inline_size\";N;s:19:\"_inline_size_tablet\";i:50;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"44b7db0\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:17:{s:11:\"member_name\";s:17:\"Stephanie Emerson\";s:10:\"member_job\";s:14:\"Kagon Designer\";s:18:\"member_description\";s:0:\"\";s:15:\"member_btn_text\";s:8:\"About Me\";s:12:\"member_image\";a:4:{s:3:\"url\";s:80:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-37.jpg\";s:2:\"id\";i:1591;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:14:\"member_divider\";s:0:\"\";s:12:\"social_media\";s:0:\"\";s:15:\"content_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"20\";s:5:\"right\";s:2:\"15\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"15\";s:8:\"isLinked\";b:0;}s:26:\"name_typography_typography\";s:6:\"custom\";s:27:\"name_typography_font_family\";s:7:\"Poppins\";s:25:\"name_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:27:\"name_typography_font_weight\";s:3:\"400\";s:9:\"job_color\";s:7:\"#FF4F40\";s:25:\"job_typography_typography\";s:6:\"custom\";s:26:\"job_typography_font_family\";s:4:\"Lato\";s:24:\"job_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:26:\"job_typography_font_weight\";s:3:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:15:\"wpr-team-member\";}}s:7:\"isInner\";b:1;}i:3;a:5:{s:2:\"id\";s:7:\"1b752a8\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:3:{s:12:\"_column_size\";i:25;s:12:\"_inline_size\";N;s:19:\"_inline_size_tablet\";i:50;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"889cb05\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:17:{s:11:\"member_name\";s:19:\"Eleanor Blankenship\";s:10:\"member_job\";s:14:\"Kagon Marketer\";s:18:\"member_description\";s:0:\"\";s:15:\"member_btn_text\";s:8:\"About Me\";s:12:\"member_image\";a:4:{s:3:\"url\";s:80:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-35.jpg\";s:2:\"id\";i:1588;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:14:\"member_divider\";s:0:\"\";s:12:\"social_media\";s:0:\"\";s:15:\"content_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"20\";s:5:\"right\";s:2:\"15\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"15\";s:8:\"isLinked\";b:0;}s:26:\"name_typography_typography\";s:6:\"custom\";s:27:\"name_typography_font_family\";s:7:\"Poppins\";s:25:\"name_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:27:\"name_typography_font_weight\";s:3:\"400\";s:9:\"job_color\";s:7:\"#FF4F40\";s:25:\"job_typography_typography\";s:6:\"custom\";s:26:\"job_typography_font_family\";s:4:\"Lato\";s:24:\"job_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:26:\"job_typography_font_weight\";s:3:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:15:\"wpr-team-member\";}}s:7:\"isInner\";b:1;}}s:7:\"isInner\";b:1;}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}i:7;a:5:{s:2:\"id\";s:7:\"c23eb4c\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:5:{s:13:\"content_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:902;s:5:\"sizes\";a:0:{}}s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"d992c98\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"e6ecbb7\";}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";i:0;s:6:\"bottom\";s:3:\"100\";s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}s:21:\"background_background\";s:7:\"classic\";}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"5e8d3c8\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:12:{s:12:\"_column_size\";i:100;s:12:\"_inline_size\";N;s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:4:{s:3:\"url\";s:80:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/07/pic-38.jpg\";s:2:\"id\";i:1741;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:19:\"background_position\";s:13:\"center center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";s:29:\"background_overlay_background\";s:7:\"classic\";s:24:\"background_overlay_color\";s:7:\"#383838\";s:13:\"border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"10\";s:5:\"right\";s:2:\"10\";s:6:\"bottom\";s:2:\"10\";s:4:\"left\";s:2:\"10\";s:8:\"isLinked\";b:1;}s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"50\";s:5:\"right\";s:2:\"50\";s:6:\"bottom\";s:2:\"50\";s:4:\"left\";s:2:\"50\";s:8:\"isLinked\";b:0;}s:14:\"padding_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"25\";s:5:\"right\";s:2:\"25\";s:6:\"bottom\";s:2:\"25\";s:4:\"left\";s:2:\"25\";s:8:\"isLinked\";b:1;}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"1fb2750\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:2:{s:13:\"content_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:540;s:5:\"sizes\";a:0:{}}s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"a00e366\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"07a7e1e\";}}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"a063b7c\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:2:{s:12:\"_column_size\";i:100;s:12:\"_inline_size\";N;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"218ac73\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:51:{s:16:\"show_form_header\";s:3:\"yes\";s:10:\"form_title\";s:17:\"GET DISCOUNT INFO\";s:16:\"form_description\";s:172:\"Detract yet delight written farther his general. If in so bred at dare rose lose good. Feel and make two real miss use easy. Celebrated delightful an especially increasing.\";s:9:\"form_icon\";a:2:{s:5:\"value\";s:0:\"\";s:7:\"library\";s:0:\"\";}s:11:\"email_label\";s:0:\"\";s:17:\"email_placeholder\";s:15:\"sample@mail.com\";s:18:\"subscribe_btn_text\";s:9:\"Subscribe\";s:29:\"subscribe_button_loading_text\";s:14:\"Subscribing...\";s:15:\"success_message\";s:38:\"You have been successfully Subscribed!\";s:13:\"error_message\";s:44:\"Ops! Something went wrong, please try again.\";s:18:\"header_title_color\";s:7:\"#FFFFFF\";s:34:\"header_title_typography_typography\";s:6:\"custom\";s:35:\"header_title_typography_font_family\";s:7:\"Poppins\";s:33:\"header_title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}s:35:\"header_title_typography_font_weight\";s:3:\"400\";s:24:\"header_description_color\";s:7:\"#E0E0E0\";s:40:\"header_description_typography_typography\";s:6:\"custom\";s:41:\"header_description_typography_font_family\";s:4:\"Lato\";s:39:\"header_description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:41:\"header_description_typography_font_weight\";s:3:\"400\";s:20:\"header_desc_distance\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:43;s:5:\"sizes\";a:0:{}}s:25:\"input_transition_duration\";d:0.5;s:27:\"input_typography_typography\";s:6:\"custom\";s:28:\"input_typography_font_family\";s:4:\"Lato\";s:26:\"input_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:28:\"input_typography_font_weight\";s:3:\"400\";s:12:\"input_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:13:\"input_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:18:\"input_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:12:\"input_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:1;}s:33:\"subscribe_btn_bg_color_background\";s:7:\"classic\";s:28:\"subscribe_btn_bg_color_color\";s:7:\"#FF4F40\";s:33:\"subscribe_btn_transition_duration\";d:0.5;s:35:\"subscribe_btn_typography_typography\";s:6:\"custom\";s:36:\"subscribe_btn_typography_font_family\";s:7:\"Poppins\";s:34:\"subscribe_btn_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:36:\"subscribe_btn_typography_font_weight\";s:3:\"400\";s:19:\"subscribe_btn_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:145;s:5:\"sizes\";a:0:{}}s:20:\"subscribe_btn_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:20:\"subscribe_btn_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:1;}s:12:\"labels_color\";s:7:\"#777777\";s:40:\"header_title_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}s:33:\"input_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:41:\"subscribe_btn_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:21:\"success_message_color\";s:7:\"#8EC5A6\";s:19:\"error_message_color\";s:7:\"#FF4F40\";s:16:\"message_color_bg\";s:9:\"#FFFFFF00\";s:29:\"message_typography_typography\";s:6:\"custom\";s:30:\"message_typography_font_family\";s:7:\"Poppins\";s:28:\"message_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:30:\"message_typography_font_weight\";s:3:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:13:\"wpr-mailchimp\";}}s:7:\"isInner\";b:1;}}s:7:\"isInner\";b:1;}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}}'),(234,1158,'_elementor_page_assets','a:0:{}'),(235,1158,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}'),(236,1160,'_elementor_edit_mode','builder'),(237,1160,'_elementor_template_type','wp-page'),(238,1160,'_elementor_version','3.16.6'),(239,1160,'_wp_page_template','elementor_canvas'),(240,1160,'_elementor_data','[{\"id\":\"90e493b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"8bb8313\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"4859bea\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]}},\"elements\":[{\"id\":\"0888320\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"ee74267\",\"elType\":\"widget\",\"settings\":{\"plugin_select\":\"cf-7\",\"cf7_templates\":\"1785\",\"input_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"input_textarea_height\":{\"unit\":\"px\",\"size\":168,\"sizes\":[]},\"label_color\":\"#000000\",\"input_color\":\"#222222\",\"input_placeholder_color\":\"#222222\",\"input_transition_duration\":0.3,\"input_typography_typography\":\"custom\",\"input_typography_font_family\":\"Poppins\",\"input_typography_font_weight\":\"400\",\"input_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"submit_btn_align\":\"justify\",\"submit_btn_bg_color_background\":\"classic\",\"submit_btn_bg_color_color\":\"#FF4F40\",\"submit_btn_color\":\"#FFFFFF\",\"submit_btn_border_color\":\"#FF4F40\",\"read_more_bg_color_hr_background\":\"classic\",\"read_more_bg_color_hr_color\":\"#E73B2D\",\"submit_btn_border_color_hr\":\"#E73B2D\",\"submit_btn_transition_duration\":0.3,\"submit_btn_typography_typography\":\"custom\",\"submit_btn_typography_font_family\":\"Poppins\",\"submit_btn_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"submit_btn_typography_font_weight\":\"400\",\"submit_btn_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"wpr-forms\"}],\"isInner\":false}],\"isInner\":false}]'),(241,1160,'_elementor_page_assets','a:0:{}'),(242,1678,'_elementor_template_type','wp-page'),(243,1678,'_elementor_version','3.6.4'),(244,1678,'_elementor_edit_mode','builder'),(245,1678,'_wp_page_template','elementor_canvas'),(246,1678,'_elementor_data','a:1:{i:0;a:5:{s:2:\"id\";s:8:\"66f22496\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:3:{s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"03d3865\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"6086334\";}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:3:\"100\";s:5:\"right\";i:0;s:6:\"bottom\";s:3:\"100\";s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:8:\"27ed61d9\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:1:{s:12:\"_column_size\";i:100;}s:8:\"elements\";a:3:{i:0;a:5:{s:2:\"id\";s:7:\"00300b3\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:7:{s:5:\"title\";s:4:\"Cart\";s:11:\"title_color\";s:7:\"#222222\";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:30;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}i:1;a:5:{s:2:\"id\";s:7:\"cb3d557\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:9:{s:6:\"editor\";s:40:\"<p>Debating me breeding be answered.</p>\";s:5:\"align\";s:4:\"left\";s:10:\"text_color\";s:7:\"#777777\";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:\"400\";s:7:\"_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:3:\"-15\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:11:\"text-editor\";}i:2;a:5:{s:2:\"id\";s:7:\"3d36673\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:78:{s:23:\"update_cart_button_text\";s:11:\"Update Cart\";s:12:\"totals_title\";s:11:\"Cart Totals\";s:20:\"checkout_button_text\";s:19:\"Proceed to Checkout\";s:27:\"update_shipping_button_text\";s:6:\"Update\";s:24:\"apply_coupon_button_text\";s:12:\"Apply coupon\";s:19:\"coupon_input_gutter\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:7;s:5:\"sizes\";a:0:{}}s:22:\"product_summary_gutter\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:33;s:5:\"sizes\";a:0:{}}s:16:\"buttons_bg_color\";s:9:\"#FF4F4000\";s:20:\"cart_totals_td_color\";s:7:\"#222222\";s:17:\"cart_totals_color\";s:7:\"#222222\";s:24:\"cart_totals_border_color\";s:7:\"#222222\";s:23:\"cart_totals_bg_color_hr\";s:7:\"#FF4F40\";s:24:\"cart_totals_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:24:\"checkout_button_bg_color\";s:7:\"#FF4F40\";s:28:\"checkout_button_border_color\";s:7:\"#FF4F40\";s:27:\"checkout_button_bg_color_hr\";s:7:\"#FF4F40\";s:38:\"checkout_button_typography_font_family\";s:7:\"Poppins\";s:36:\"checkout_button_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:38:\"checkout_button_typography_font_weight\";s:3:\"400\";s:22:\"cart_sections_bg_color\";s:7:\"#FFFFFF\";s:26:\"cart_wrappers_border_color\";s:7:\"#EDEDED\";s:26:\"cart_wrappers_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:29:\"cart_table_product_name_color\";s:7:\"#777777\";s:18:\"product_image_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:74;s:5:\"sizes\";a:0:{}}s:24:\"cart_tables_border_color\";s:7:\"#EDEDED\";s:24:\"cart_tables_border_width\";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:\"1\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:20:\"totals_title_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"10\";s:5:\"right\";s:2:\"15\";s:6:\"bottom\";s:2:\"10\";s:4:\"left\";s:2:\"15\";s:8:\"isLinked\";b:0;}s:41:\"cart_table_heading_typography_font_family\";s:7:\"Poppins\";s:39:\"cart_table_heading_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:17;s:5:\"sizes\";a:0:{}}s:27:\"cart_table_remove_icon_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:24:\"form_fields_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:25:\"form_fields_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:1;}s:45:\"cart_table_description_typography_font_family\";s:7:\"Poppins\";s:43:\"cart_table_description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:13:\"buttons_color\";s:7:\"#222222\";s:30:\"buttons_typography_font_family\";s:7:\"Poppins\";s:28:\"buttons_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:30:\"buttons_typography_font_weight\";s:3:\"400\";s:14:\"buttons_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:13:\"button_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:31:\"checkout_button_border_color_hr\";s:7:\"#FF4F40\";s:34:\"forms_field_typography_font_family\";s:7:\"Poppins\";s:32:\"forms_field_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:20:\"buttons_border_color\";s:7:\"#FF4F40\";s:19:\"buttons_bg_color_hr\";s:7:\"#FF4F40\";s:23:\"buttons_border_color_hr\";s:7:\"#FF4F40\";s:27:\"buttons_transition_duration\";d:0.3;s:23:\"checkout_button_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"13\";s:5:\"right\";s:2:\"25\";s:6:\"bottom\";s:2:\"13\";s:4:\"left\";s:2:\"25\";s:8:\"isLinked\";b:0;}s:30:\"buttons_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.9;s:5:\"sizes\";a:0:{}}s:14:\"button_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"6\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"6\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}s:31:\"cart_totals_headings_typography\";s:6:\"custom\";s:32:\"cart_totals_headings_font_family\";s:7:\"Poppins\";s:32:\"cart_totals_headings_font_weight\";s:3:\"400\";s:28:\"checkout_button_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:22:\"checkout_button_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:1;}s:20:\"buttons_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:7:\"_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:20:\"cart_totals_color_hr\";s:7:\"#FFFFFF\";s:27:\"cart_totals_border_color_hr\";s:7:\"#FF4F40\";s:25:\"cart_totals_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:1;}s:28:\"cart_totals_title_typography\";s:6:\"custom\";s:29:\"cart_totals_title_font_family\";s:7:\"Poppins\";s:27:\"cart_totals_title_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}s:34:\"cart_totals_title_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:22;s:5:\"sizes\";a:0:{}}s:29:\"cart_totals_title_font_weight\";s:3:\"600\";s:29:\"cart_totals_texts_font_family\";s:7:\"Poppins\";s:29:\"cart_totals_texts_font_weight\";s:3:\"400\";s:25:\"coupon_input_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:446;s:5:\"sizes\";a:0:{}}s:46:\"cart_table_heading_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:50:\"cart_table_description_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:39:\"forms_field_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:35:\"buttons_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:34:\"cart_totals_texts_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:43:\"checkout_button_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:15:\"notice_bg_color\";s:7:\"#FF4F40\";s:24:\"info_notice_accent_color\";s:7:\"#222222\";s:25:\"error_notice_accent_color\";s:7:\"#FFFFFF\";s:29:\"notice_typography_font_family\";s:7:\"Poppins\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:13:\"wpr-page-cart\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}}'),(247,1678,'_elementor_page_assets','a:0:{}'),(248,1679,'_elementor_edit_mode','builder'),(249,1679,'_elementor_template_type','wp-page'),(250,1679,'_elementor_version','3.6.4'),(251,1679,'_wp_page_template','elementor_canvas'),(252,1679,'_elementor_data','a:1:{i:0;a:5:{s:2:\"id\";s:8:\"72497e78\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:3:{s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"b1dfbce\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"440648a\";}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:3:\"100\";s:5:\"right\";i:0;s:6:\"bottom\";s:3:\"100\";s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:8:\"32d78d6b\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:1:{s:12:\"_column_size\";i:100;}s:8:\"elements\";a:3:{i:0;a:5:{s:2:\"id\";s:7:\"7512a79\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:6:{s:5:\"title\";s:8:\"Checkout\";s:11:\"title_color\";s:7:\"#222222\";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:30;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}i:1;a:5:{s:2:\"id\";s:7:\"9cf6050\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:8:{s:6:\"editor\";s:49:\"<p>Debating me breeding beautiful answered.</p>\";s:5:\"align\";s:4:\"left\";s:10:\"text_color\";s:7:\"#777777\";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:\"400\";s:7:\"_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:3:\"-15\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:11:\"text-editor\";}i:2;a:5:{s:2:\"id\";s:7:\"9927120\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:69:{s:25:\"checkout_general_bg_color\";s:7:\"#FFFFFF\";s:29:\"checkout_general_border_color\";s:7:\"#EDEDED\";s:29:\"checkout_general_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:30:\"checkout_general_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:1;}s:17:\"form_labels_color\";s:7:\"#222222\";s:34:\"form_labels_typography_font_family\";s:7:\"Poppins\";s:32:\"form_labels_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:25:\"forms_fields_normal_color\";s:7:\"#999999\";s:32:\"forms_fields_normal_border_color\";s:7:\"#EDEDED\";s:24:\"forms_fields_focus_color\";s:7:\"#444444\";s:24:\"form_fields_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:25:\"form_fields_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:1;}s:19:\"form_fields_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"10\";s:5:\"right\";s:2:\"10\";s:6:\"bottom\";s:2:\"10\";s:4:\"left\";s:2:\"10\";s:8:\"isLinked\";b:1;}s:28:\"checkout_table_heading_color\";s:7:\"#222222\";s:45:\"checkout_table_heading_typography_font_family\";s:7:\"Poppins\";s:43:\"checkout_table_heading_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:30:\"checkout_table_heading_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"7\";s:5:\"right\";s:1:\"7\";s:6:\"bottom\";s:1:\"7\";s:4:\"left\";s:1:\"7\";s:8:\"isLinked\";b:1;}s:32:\"checkout_table_description_color\";s:7:\"#666666\";s:49:\"checkout_table_description_typography_font_family\";s:7:\"Poppins\";s:47:\"checkout_table_description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:54:\"checkout_table_description_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:54:\"checkout_table_description_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:21:\"payment_methods_color\";s:7:\"#555555\";s:26:\"payment_methods_link_color\";s:7:\"#FF4F40\";s:32:\"payment_methods_link_hover_color\";s:7:\"#FF4F40\";s:28:\"payment_methods_labels_color\";s:7:\"#222222\";s:31:\"payment_methods_inputs_distance\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:6;s:5:\"sizes\";a:0:{}}s:30:\"payment_methods_tooltips_color\";s:7:\"#222222\";s:24:\"place_order_button_color\";s:7:\"#FFFFFF\";s:27:\"place_order_button_bg_color\";s:7:\"#FF4F40\";s:31:\"place_order_button_border_color\";s:7:\"#FF4F40\";s:30:\"place_order_button_bg_color_hr\";s:7:\"#EC3F30\";s:41:\"place_order_button_typography_font_family\";s:7:\"Poppins\";s:39:\"place_order_button_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:41:\"place_order_button_typography_font_weight\";s:3:\"400\";s:31:\"place_order_button_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:24:\"checkout_general_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"10\";s:5:\"right\";s:2:\"10\";s:6:\"bottom\";s:2:\"10\";s:4:\"left\";s:2:\"10\";s:8:\"isLinked\";b:1;}s:31:\"headings_typography_font_family\";s:7:\"Poppins\";s:29:\"headings_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}s:45:\"checkout_table_heading_typography_font_weight\";s:3:\"400\";s:49:\"checkout_table_description_typography_font_weight\";s:3:\"400\";s:37:\"order_received_typography_font_family\";s:7:\"Poppins\";s:35:\"order_received_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:37:\"order_received_typography_font_weight\";s:3:\"400\";s:34:\"place_order_button_border_color_hr\";s:7:\"#EC3F30\";s:26:\"place_order_button_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"12\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"12\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:0;}s:25:\"place_order_button_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:1;}s:35:\"forms_fields_typography_font_family\";s:7:\"Poppins\";s:33:\"forms_fields_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:27:\"checkout_table_border_color\";s:7:\"#EDEDED\";s:31:\"payment_methods_separator_color\";s:7:\"#EDEDED\";s:25:\"tooltip_texts_font_family\";s:4:\"Lato\";s:23:\"tooltip_texts_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:25:\"tooltip_texts_font_weight\";s:3:\"400\";s:34:\"payment_methods_inputs_distance_hr\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:5;s:5:\"sizes\";a:0:{}}s:7:\"_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:36:\"headings_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:34:\"notice_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:34:\"checkout_first_column_width_mobile\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:30:\"checkout_general_gutter_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}s:39:\"form_labels_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:40:\"forms_fields_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:15:\"notice_bg_color\";s:7:\"#FF4F40\";s:24:\"info_notice_accent_color\";s:7:\"#FFFFFF\";s:25:\"error_notice_accent_color\";s:7:\"#FF4F40\";s:50:\"checkout_table_heading_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:42:\"order_received_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:30:\"tooltip_texts_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:46:\"place_order_button_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:17:\"wpr-page-checkout\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}}'),(253,1679,'_elementor_page_assets','a:0:{}'),(254,1680,'_elementor_edit_mode','builder'),(255,1680,'_elementor_template_type','wp-page'),(256,1680,'_elementor_version','3.9.0'),(257,1680,'_wp_page_template','default'),(258,1680,'_elementor_data',''),(259,1680,'_elementor_page_settings',''),(515,130,'_elementor_template_type','wpr-theme-builder'),(516,130,'_wpr_template_type','product_single'),(517,130,'_wp_page_template','default'),(518,130,'_elementor_edit_mode','builder'),(519,130,'_elementor_version','3.7.0'),(520,130,'_elementor_page_settings','a:2:{s:22:\"preview_archive_search\";s:1:\"a\";s:22:\"preview_single_product\";s:3:\"110\";}'),(521,130,'_elementor_data','a:3:{i:0;a:5:{s:2:\"id\";s:7:\"d5fa6ba\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:4:{s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"d44532c\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"287fa25\";}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"40\";s:5:\"right\";i:0;s:6:\"bottom\";s:1:\"0\";s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"50\";s:5:\"right\";i:0;s:6:\"bottom\";s:1:\"0\";s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"19f5c1c\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:2:{s:12:\"_column_size\";i:100;s:12:\"_inline_size\";N;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"aaf2e32\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:18:{s:15:\"notice_bg_color\";s:7:\"#FF4F40\";s:19:\"notice_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"5\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:0;}s:14:\"notice_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"16\";s:5:\"right\";s:2:\"25\";s:6:\"bottom\";s:2:\"13\";s:4:\"left\";s:2:\"25\";s:8:\"isLinked\";b:0;}s:9:\"btn_color\";s:7:\"#FF4F40\";s:18:\"notice_border_type\";s:4:\"none\";s:26:\"btn_typography_font_family\";s:7:\"Poppins\";s:24:\"btn_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:26:\"btn_typography_font_weight\";s:3:\"400\";s:12:\"btn_color_hr\";s:7:\"#FF4F40\";s:10:\"btn_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:1;}s:11:\"btn_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"10\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"10\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:0;}s:29:\"notice_typography_font_family\";s:7:\"Poppins\";s:27:\"notice_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:29:\"notice_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.9;s:5:\"sizes\";a:0:{}}s:36:\"notice_typography_line_height_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1;s:5:\"sizes\";a:0:{}}s:23:\"notice_icon_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:21:\"notice_padding_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"10\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:2:\"10\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}s:31:\"btn_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:18:\"wpr-product-notice\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}i:1;a:5:{s:2:\"id\";s:7:\"ad5a6c1\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:5:{s:9:\"structure\";s:2:\"20\";s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"f282a49\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"1a71be8\";}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"30\";s:5:\"right\";i:0;s:6:\"bottom\";s:2:\"30\";s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}s:3:\"gap\";s:4:\"wide\";}s:8:\"elements\";a:2:{i:0;a:5:{s:2:\"id\";s:7:\"33c05bb\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:2:{s:12:\"_column_size\";i:50;s:12:\"_inline_size\";N;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"e774f79\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:8:{s:16:\"sales_badge_text\";s:5:\"Sale!\";s:25:\"product_media_sales_badge\";s:0:\"\";s:27:\"gallery_thumb_nav_gutter_hr\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:11;s:5:\"sizes\";a:0:{}}s:31:\"gallery_thumb_nav_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"17\";s:5:\"right\";s:2:\"17\";s:6:\"bottom\";s:2:\"17\";s:4:\"left\";s:2:\"17\";s:8:\"isLinked\";b:1;}s:38:\"product_media_vertical_distance_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:9;s:5:\"sizes\";a:0:{}}s:31:\"product_media_vertical_distance\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:9;s:5:\"sizes\";a:0:{}}s:38:\"product_media_vertical_distance_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:8;s:5:\"sizes\";a:0:{}}s:30:\"product_media_sales_badge_text\";s:5:\"Sale!\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:17:\"wpr-product-media\";}}s:7:\"isInner\";b:0;}i:1;a:5:{s:2:\"id\";s:7:\"40802cd\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:2:{s:12:\"_column_size\";i:50;s:12:\"_inline_size\";N;}s:8:\"elements\";a:8:{i:0;a:5:{s:2:\"id\";s:7:\"2a8229f\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:6:{s:28:\"title_typography_font_family\";s:7:\"Poppins\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:35;s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";s:3:\"600\";s:28:\"title_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1;s:5:\"sizes\";a:0:{}}s:35:\"title_typography_line_height_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:33:\"title_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:17:\"wpr-product-title\";}i:1;a:5:{s:2:\"id\";s:7:\"32f098f\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:9:{s:20:\"product_rating_color\";s:7:\"#FF4F40\";s:25:\"product_rating_text_color\";s:7:\"#777777\";s:31:\"product_rating_text_color_hover\";s:7:\"#666666\";s:37:\"product_rating_typography_font_family\";s:4:\"Lato\";s:35:\"product_rating_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:19:\"product_rating_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:21:\"product_rating_gutter\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:5;s:5:\"sizes\";a:0:{}}s:14:\"_margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:3:\"-11\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:14:\"_margin_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:3:\"-12\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:18:\"wpr-product-rating\";}i:2;a:5:{s:2:\"id\";s:7:\"545d28f\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:6:{s:16:\"sales_badge_text\";s:5:\"Sale!\";s:22:\"sales_badge_background\";s:7:\"#FF4F40\";s:34:\"sales_badge_typography_font_family\";s:7:\"Poppins\";s:32:\"sales_badge_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:34:\"sales_badge_typography_font_weight\";s:3:\"500\";s:19:\"sales_badge_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"3\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"3\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:23:\"wpr-product-sales-badge\";}i:3;a:5:{s:2:\"id\";s:7:\"38f45d8\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:8:{s:11:\"price_color\";s:7:\"#FF4F40\";s:28:\"price_typography_font_family\";s:7:\"Poppins\";s:26:\"price_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}s:28:\"price_typography_font_weight\";s:3:\"400\";s:16:\"price_sale_color\";s:7:\"#FF867C\";s:33:\"price_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:33:\"price_sale_typography_font_family\";s:7:\"Poppins\";s:31:\"price_sale_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:17:\"wpr-product-price\";}i:4;a:5:{s:2:\"id\";s:7:\"c6cc2bc\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:8:{s:35:\"product_meta_typography_font_family\";s:7:\"Poppins\";s:33:\"product_meta_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:16:\"meta_value_color\";s:7:\"#777777\";s:27:\"meta_value_link_hover_color\";s:7:\"#777777\";s:19:\"product_meta_gutter\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:8;s:5:\"sizes\";a:0:{}}s:16:\"meta_title_color\";s:7:\"#222222\";s:13:\"meta_tag_hide\";s:0:\"\";s:35:\"product_meta_typography_font_weight\";s:3:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:16:\"wpr-product-meta\";}i:5;a:5:{s:2:\"id\";s:7:\"574cb85\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:61:{s:13:\"reset_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}s:12:\"reset_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"20\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"10\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:21:\"variation_title_color\";s:7:\"#FFFFFF\";s:27:\"variation_description_color\";s:7:\"#222222\";s:21:\"variation_price_color\";s:7:\"#FF4F40\";s:37:\"variation_availability_color_in_stock\";s:7:\"#FF4F40\";s:26:\"reset_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:14:\"quantity_color\";s:7:\"#222222\";s:17:\"quantity_color_hr\";s:7:\"#6D6D6D\";s:20:\"add_to_cart_bg_color\";s:7:\"#FF4F40\";s:24:\"add_to_cart_border_color\";s:7:\"#FF4F40\";s:34:\"add_to_cart_typography_font_family\";s:7:\"Poppins\";s:32:\"add_to_cart_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:23:\"add_to_cart_bg_color_hr\";s:7:\"#FF4F40\";s:27:\"add_to_cart_border_color_hr\";s:7:\"#FF4F40\";s:18:\"add_to_cart_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:8:\"isLinked\";b:1;}s:30:\"add_to_cart_group_border_color\";s:7:\"#FF6D6D\";s:23:\"add_to_cart_label_color\";s:7:\"#222222\";s:28:\"variations_table_label_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:14:\"table_distance\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:22;s:5:\"sizes\";a:0:{}}s:29:\"variations_table_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";s:8:\"isLinked\";b:1;}s:36:\"add_to_cart_variation_dropdown_color\";s:7:\"#777777\";s:43:\"add_to_cart_variation_dropdown_border_color\";s:7:\"#F3F3F3\";s:30:\"variations_select_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:22:\"add_to_cart_buttons_vr\";s:3:\"end\";s:19:\"quantity_icons_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:37:\"variation_title_typography_typography\";s:6:\"custom\";s:21:\"quantity_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:15:\"quantity_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:1;}s:34:\"add_to_cart_typography_font_weight\";s:3:\"400\";s:18:\"add_to_cart_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:1;}s:39:\"add_to_cart_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:33:\"reset_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:22:\"variation_name_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"7\";s:5:\"right\";s:1:\"7\";s:6:\"bottom\";s:1:\"7\";s:4:\"left\";s:2:\"10\";s:8:\"isLinked\";b:0;}s:24:\"variation_select_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"7\";s:5:\"right\";s:1:\"7\";s:6:\"bottom\";s:1:\"7\";s:4:\"left\";s:1:\"7\";s:8:\"isLinked\";b:0;}s:39:\"add_to_cart_variation_names_font_family\";s:7:\"Poppins\";s:37:\"add_to_cart_variation_names_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:39:\"add_to_cart_variation_names_font_weight\";s:3:\"400\";s:42:\"add_to_cart_variation_dropdown_color_focus\";s:7:\"#222222\";s:39:\"add_to_cart_variation_select_typography\";s:6:\"custom\";s:40:\"add_to_cart_variation_select_font_family\";s:7:\"Poppins\";s:38:\"add_to_cart_variation_select_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:18:\"reset_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:34:\"grouped_title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:49:\"add_to_cart_variation_dropdown_border_color_focus\";s:7:\"#F3F3F3\";s:36:\"grouped_title_typography_font_family\";s:7:\"Poppins\";s:42:\"variation_description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:36:\"variation_price_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:44:\"variation_availability_typography_typography\";s:6:\"custom\";s:43:\"variation_availability_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:41:\"grouped_title_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:44:\"variation_description_typography_font_family\";s:7:\"Poppins\";s:38:\"variation_price_typography_font_family\";s:7:\"Poppins\";s:38:\"variation_price_typography_font_weight\";s:3:\"400\";s:45:\"variation_availability_typography_font_family\";s:7:\"Poppins\";s:45:\"variation_availability_typography_font_weight\";s:3:\"400\";s:11:\"reset_color\";s:7:\"#222222\";s:18:\"reset_border_color\";s:7:\"#FF4F40\";s:28:\"reset_typography_font_family\";s:7:\"Poppins\";s:17:\"reset_border_type\";s:5:\"solid\";s:12:\"reset_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:1;}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:23:\"wpr-product-add-to-cart\";}i:6;a:5:{s:2:\"id\";s:7:\"b2b7191\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:8:{s:22:\"product_in_stock_color\";s:7:\"#FF4F40\";s:27:\"product_in_stock_text_color\";s:7:\"#222222\";s:36:\"product_stock_typography_font_family\";s:7:\"Poppins\";s:26:\"product_out_of_stock_color\";s:7:\"#FF4F40\";s:41:\"product_available_on_backorder_text_color\";s:7:\"#222222\";s:19:\"product_icon_gutter\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:6;s:5:\"sizes\";a:0:{}}s:34:\"product_stock_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:31:\"product_out_of_stock_text_color\";s:7:\"#222222\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:17:\"wpr-product-stock\";}i:7;a:5:{s:2:\"id\";s:7:\"1c351a0\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:5:{s:28:\"excerpt_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:30:\"excerpt_typography_font_family\";s:4:\"Lato\";s:13:\"excerpt_color\";s:7:\"#777777\";s:7:\"_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:3:\"-11\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:14:\"_margin_mobile\";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:3:\"-28\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:19:\"wpr-product-excerpt\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}i:2;a:5:{s:2:\"id\";s:7:\"0bcbf1a\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:3:{s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"1794014\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"6645c2f\";}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";i:0;s:6:\"bottom\";s:2:\"50\";s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"aff72bb\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:2:{s:12:\"_column_size\";i:100;s:12:\"_inline_size\";N;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"85a5117\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:70:{s:10:\"tabs_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:92;s:5:\"sizes\";a:0:{}}s:14:\"tab_text_color\";s:7:\"#222222\";s:26:\"tab_typography_font_family\";s:7:\"Poppins\";s:24:\"tab_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:20:\"hover_tab_text_color\";s:7:\"#FF4F40\";s:21:\"active_tab_text_color\";s:7:\"#FF4F40\";s:23:\"tab_active_border_color\";s:7:\"#EDEDED\";s:33:\"tab_typography_active_font_family\";s:7:\"Poppins\";s:31:\"tab_typography_active_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:28:\"content_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:39:\"additional_info_th_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:39:\"additional_info_td_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:38:\"field_label_title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:13:\"rating_gutter\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:10;s:5:\"sizes\";a:0:{}}s:26:\"input_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:10:\"text_color\";s:7:\"#777777\";s:22:\"tab_hover_border_color\";s:7:\"#EDEDED\";s:32:\"tab_typography_hover_font_family\";s:7:\"Poppins\";s:30:\"tab_typography_hover_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:30:\"content_typography_font_family\";s:4:\"Lato\";s:30:\"content_typography_font_weight\";s:3:\"400\";s:13:\"panel_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"35\";s:5:\"right\";s:2:\"35\";s:6:\"bottom\";s:2:\"35\";s:4:\"left\";s:2:\"35\";s:8:\"isLinked\";b:1;}s:27:\"additional_info_label_color\";s:7:\"#222222\";s:29:\"additional_info_divider_color\";s:9:\"#F2F2F2FA\";s:16:\"comment_bg_color\";s:0:\"\";s:20:\"comment_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:15:\"comment_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"5\";s:5:\"right\";s:1:\"5\";s:6:\"bottom\";s:1:\"5\";s:4:\"left\";s:1:\"5\";s:8:\"isLinked\";b:0;}s:15:\"comment_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:34;s:5:\"sizes\";a:0:{}}s:11:\"avatar_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:55;s:5:\"sizes\";a:0:{}}s:13:\"avatar_margin\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:19:\"avatar_border_color\";s:7:\"#FF0C0C\";s:19:\"avatar_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"4\";s:5:\"right\";s:1:\"4\";s:6:\"bottom\";s:1:\"4\";s:4:\"left\";s:1:\"4\";s:8:\"isLinked\";b:1;}s:20:\"avatar_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"30\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"30\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:1;}s:34:\"additional_info_label_odd_bg_color\";s:9:\"#F8F8F800\";s:20:\"comment_rating_color\";s:7:\"#FF4F40\";s:40:\"field_label_title_typography_font_family\";s:7:\"Poppins\";s:20:\"field_label_distance\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:11;s:5:\"sizes\";a:0:{}}s:12:\"rating_color\";s:7:\"#FF4F40\";s:12:\"input_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:1;}s:13:\"input_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"10\";s:5:\"right\";s:2:\"10\";s:6:\"bottom\";s:2:\"10\";s:4:\"left\";s:2:\"10\";s:8:\"isLinked\";b:1;}s:12:\"input_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:33;s:5:\"sizes\";a:0:{}}s:15:\"textarea_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:115;s:5:\"sizes\";a:0:{}}s:13:\"input_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}s:19:\"submit_btn_bg_color\";s:7:\"#FF4F40\";s:32:\"submit_btn_typography_typography\";s:6:\"custom\";s:33:\"submit_btn_typography_font_family\";s:7:\"Poppins\";s:31:\"submit_btn_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:33:\"submit_btn_typography_font_weight\";s:3:\"400\";s:25:\"submit_btn_bg_color_hover\";s:7:\"#F03E2F\";s:17:\"submit_btn_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:1;}s:18:\"submit_btn_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"12\";s:5:\"right\";s:2:\"40\";s:6:\"bottom\";s:2:\"12\";s:4:\"left\";s:2:\"40\";s:8:\"isLinked\";b:0;}s:31:\"tab_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:31:\"tab_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:37:\"tab_typography_hover_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:37:\"tab_typography_hover_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:38:\"tab_typography_active_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:38:\"tab_typography_active_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:35:\"content_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:46:\"additional_info_th_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:46:\"additional_info_td_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:30:\"additional_info_padding_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"8\";s:5:\"right\";s:1:\"8\";s:6:\"bottom\";s:1:\"8\";s:4:\"left\";s:1:\"8\";s:8:\"isLinked\";b:1;}s:38:\"submit_btn_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:18:\"comment_date_color\";s:7:\"#777777\";s:29:\"comment_rating_unmarked_color\";s:7:\"#777777\";s:25:\"comment_description_color\";s:7:\"#777777\";s:12:\"labels_color\";s:7:\"#222222\";s:21:\"labels_color_required\";s:7:\"#222222\";s:11:\"input_color\";s:7:\"#222222\";s:34:\"additional_information_value_color\";s:7:\"#777777\";s:14:\"input_color_fc\";s:7:\"#222222\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:16:\"wpr-product-tabs\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}}'),(522,130,'_elementor_page_assets','a:0:{}'),(523,130,'_wp_old_slug','user-product_single-woo-shop-v1-single'),(524,130,'_wp_old_slug','user-product_single-woo-shop-v1-product-single'),(525,130,'_wp_old_slug','user-product_single-shopdiko-v1-product'),(526,130,'_wp_old_slug','user-product_single-woo-shop-v1-product'),(527,337,'_elementor_template_type','wp-post'),(528,337,'_wpr_template_type','header'),(529,337,'_wp_page_template','elementor_canvas'),(530,337,'wpr_header_show_on_canvas','true'),(531,337,'_elementor_edit_mode','builder'),(532,337,'_elementor_version','3.9.0'),(533,337,'_elementor_data','[{\"id\":\"99f5450\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b450fcf\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"d47cc9b\"}],\"z_index\":3,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[{\"id\":\"2371ecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_mobile\":35,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"4cb5bfe\",\"elType\":\"widget\",\"settings\":{\"title_type\":\"none\",\"custom_title\":\"My Custom Logo\",\"custom_description\":\"Tagline\",\"width\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"border_border\":\"\",\"image\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2022\\/06\\/SF-logo.png\",\"id\":2095,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"retina_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"wpr-logo\"}],\"isInner\":false},{\"id\":\"7b88682\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":46.332,\"content_position\":\"center\",\"_inline_size_mobile\":65,\"_inline_size_tablet\":80,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53eac1f\",\"elType\":\"widget\",\"settings\":{\"menu_select\":\"main-menu\",\"menu_align_tablet\":\"center\",\"toggle_btn_txt_1\":\"Menu\",\"toggle_btn_txt_2\":\"Close\",\"toggle_btn_align_mobile\":\"right\",\"menu_item_color\":\"#272727\",\"menu_items_typography_typography\":\"custom\",\"menu_items_typography_font_family\":\"Poppins\",\"menu_items_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_items_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_items_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"menu_items_typography_font_weight\":\"400\",\"menu_item_color_hover\":\"#FF4F40\",\"pointer_color_hover\":\"#FF4F40\",\"menu_items_sub_icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"pointer_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_items_padding_bg_hr\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_items_padding_vr\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"menu_items_border_color\":\"#222222\",\"sub_menu_color\":\"#323232\",\"sub_menu_color_bg_hover\":\"#FF4F40\",\"sub_menu_typography_typography\":\"custom\",\"sub_menu_typography_font_family\":\"Poppins\",\"sub_menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"sub_menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"sub_menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"sub_menu_typography_font_weight\":\"400\",\"sub_menu_padding_vr\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_menu_divider\":\"\",\"sub_menu_border_border\":\"\",\"sub_menu_box_shadow_box_shadow_type\":\"yes\",\"sub_menu_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(164.99999999999997, 164.99999999999997, 164.99999999999997, 0.22)\"},\"toggle_btn_color_hover\":\"#FF4F40\",\"toggle_btn_lines_height\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"toggle_btn_line_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"toggle_btn_width\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"mobile_menu_bg_color_focus\":\"#FF4F40\",\"mobile_menu_divider_color\":\"#F3F3F3\",\"mobile_menu_offset\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"toggle_btn_align_tablet\":\"right\",\"menu_items_sub_offset\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"sub_mega_menu_border_border\":\"\",\"mobile_menu_padding_hr\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"mobile_menu_padding_vr\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mobile_menu_sub_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"mobile_menu_sub_padding_hr\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"mobile_menu_sub_padding_vr\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"sub_mega_menu_box_shadow_box_shadow_type\":\"yes\",\"sub_mega_menu_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"mobile_menu_offset_laptop\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"mobile_menu_offset_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-mega-menu\"}],\"isInner\":false},{\"id\":\"1291c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_mobile\":65,\"_inline_size_tablet\":80,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ae8a91\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Login\",\"button_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/login\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_hover_animation_text\":\"Go\",\"button_position\":\"right\",\"button_bg_color_background\":\"classic\",\"button_bg_color_color\":\"#FD7B03\",\"button_hover_bg_color_background\":\"classic\",\"button_hover_bg_color_color\":\"#D77822\"},\"elements\":[],\"widgetType\":\"wpr-button\"}],\"isInner\":false}],\"isInner\":false}]'),(534,337,'_elementor_page_assets','a:0:{}'),(535,337,'_wp_old_slug','user-header-shopdiko-v1-header'),(536,337,'_wp_old_slug','user-header-woo-shop-v1-header'),(537,340,'_elementor_template_type','wp-post'),(538,340,'_wpr_template_type','footer'),(539,340,'_wp_page_template','elementor_canvas'),(540,340,'wpr_footer_show_on_canvas','true'),(541,340,'_elementor_edit_mode','builder'),(542,340,'_elementor_version','3.9.0'),(543,340,'_elementor_data','[{\"id\":\"c785f8b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#272727\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"59e4d8d\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"3efef5b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed0d8cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ef289df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>SubscriptionFlow Demo<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb6bdf5\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#272727\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ad27cd7\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"294f847\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"c4b827a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"383dffc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#3A3A3A\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27c299b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b1fc068\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"aab7447\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"12dde41\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"263f2d3\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Scroll To Top\",\"button_text_color\":\"#FF4F40\",\"button_bg_color\":\"#605BE500\",\"button_border_color\":\"#FF4F40\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"button_bg_color_hover\":\"#FF4F40\",\"button_border_color_hover\":\"#FF4F40\",\"hover_animation_hover_duration\":0.5,\"button_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"15\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":false},\"border_switcher\":\"yes\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wpr-back-to-top\"}],\"isInner\":false}],\"isInner\":false}]'),(544,340,'_elementor_page_assets','a:0:{}'),(545,340,'_wp_old_slug','user-footer-shopdiko-v1-footer'),(546,340,'_wp_old_slug','user-footer-woo-shop-v1-footer'),(547,351,'_elementor_template_type','wpr-theme-builder'),(548,351,'_wpr_template_type','product_archive'),(549,351,'_wp_page_template','default'),(550,351,'_elementor_edit_mode','builder'),(551,351,'_elementor_version','3.7.0'),(552,351,'_elementor_page_settings','a:1:{s:22:\"preview_archive_search\";s:1:\"a\";}'),(553,351,'_elementor_data','a:1:{i:0;a:5:{s:2:\"id\";s:7:\"eebaed8\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:4:{s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"88824a8\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"3cc087e\";}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:3:\"100\";s:5:\"right\";i:0;s:6:\"bottom\";s:3:\"100\";s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}s:13:\"margin_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"50\";s:5:\"right\";i:0;s:6:\"bottom\";s:2:\"50\";s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"0c98e6e\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:2:{s:12:\"_column_size\";i:100;s:12:\"_inline_size\";N;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"8ac9d69\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:109:{s:15:\"query_selection\";s:7:\"current\";s:20:\"query_not_found_text\";s:15:\"No Posts Found!\";s:13:\"grid_elements\";a:3:{i:0;a:5:{s:3:\"_id\";s:7:\"9db0672\";s:15:\"element_tax_sep\";s:2:\", \";s:26:\"element_addcart_simple_txt\";s:11:\"Add to Cart\";s:27:\"element_addcart_grouped_txt\";s:14:\"Select Options\";s:28:\"element_addcart_variable_txt\";s:13:\"View Products\";}i:1;a:6:{s:14:\"element_select\";s:5:\"price\";s:3:\"_id\";s:7:\"8895316\";s:15:\"element_tax_sep\";s:2:\", \";s:26:\"element_addcart_simple_txt\";s:11:\"Add to Cart\";s:27:\"element_addcart_grouped_txt\";s:14:\"Select Options\";s:28:\"element_addcart_variable_txt\";s:13:\"View Products\";}i:2;a:6:{s:14:\"element_select\";s:11:\"add-to-cart\";s:3:\"_id\";s:7:\"ce8111c\";s:15:\"element_tax_sep\";s:2:\", \";s:26:\"element_addcart_simple_txt\";s:11:\"Add to Cart\";s:27:\"element_addcart_grouped_txt\";s:14:\"Select Options\";s:28:\"element_addcart_variable_txt\";s:13:\"View Products\";}}s:16:\"filters_all_text\";s:3:\"All\";s:21:\"pagination_older_text\";s:11:\"Older Posts\";s:21:\"pagination_newer_text\";s:11:\"Newer Posts\";s:20:\"pagination_prev_text\";s:13:\"Previous Page\";s:20:\"pagination_next_text\";s:9:\"Next Page\";s:21:\"pagination_first_text\";s:10:\"First Page\";s:20:\"pagination_last_text\";s:9:\"Last Page\";s:25:\"pagination_load_more_text\";s:9:\"Show More\";s:22:\"pagination_finish_text\";s:15:\"End of Content.\";s:14:\"title_color_hr\";s:7:\"#333333\";s:25:\"title_transition_duration\";d:0.5;s:27:\"title_typography_typography\";s:6:\"custom\";s:28:\"title_typography_font_family\";s:7:\"Poppins\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";s:3:\"400\";s:19:\"categories_color_hr\";s:7:\"#CD98CC\";s:32:\"categories_typography_typography\";s:6:\"custom\";s:33:\"categories_typography_font_family\";s:7:\"Poppins\";s:31:\"categories_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:33:\"categories_typography_font_weight\";s:3:\"400\";s:26:\"product_status_os_bg_color\";s:7:\"#FF4F40\";s:36:\"product_status_typography_typography\";s:6:\"custom\";s:37:\"product_status_typography_font_family\";s:7:\"Poppins\";s:35:\"product_status_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:37:\"product_status_typography_font_weight\";s:3:\"400\";s:40:\"product_status_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.2;s:5:\"sizes\";a:0:{}}s:22:\"product_status_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"15\";s:5:\"right\";s:2:\"10\";s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"10\";s:8:\"isLinked\";b:0;}s:21:\"product_status_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"30\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"30\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:1;}s:19:\"product_price_color\";s:7:\"#FF4F40\";s:23:\"product_price_old_color\";s:7:\"#FF7E73\";s:35:\"product_price_typography_typography\";s:6:\"custom\";s:36:\"product_price_typography_font_family\";s:7:\"Poppins\";s:34:\"product_price_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:19;s:5:\"sizes\";a:0:{}}s:36:\"product_price_typography_font_weight\";s:3:\"400\";s:24:\"add_to_cart_border_color\";s:7:\"#FF4F40\";s:20:\"add_to_cart_color_hr\";s:7:\"#FFFFFF\";s:23:\"add_to_cart_bg_color_hr\";s:7:\"#FF4F40\";s:27:\"add_to_cart_border_color_hr\";s:7:\"#FF4F40\";s:31:\"add_to_cart_transition_duration\";d:0.3;s:33:\"add_to_cart_typography_typography\";s:6:\"custom\";s:34:\"add_to_cart_typography_font_family\";s:7:\"Poppins\";s:32:\"add_to_cart_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:34:\"add_to_cart_typography_font_weight\";s:3:\"400\";s:24:\"add_to_cart_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:19:\"add_to_cart_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"8\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:1:\"8\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:0;}s:18:\"add_to_cart_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:20:\"product_price_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"5\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:18:\"cross_sell_heading\";s:27:\"You may be interested in...\";s:14:\"upsell_heading\";s:20:\"You may also like...\";s:12:\"sort_heading\";s:4:\"Shop\";s:20:\"product_rating_color\";s:7:\"#FF4F40\";s:26:\"product_rating_score_color\";s:7:\"#FF4F40\";s:26:\"product_status_ft_bg_color\";s:7:\"#FF4F40\";s:12:\"title_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:24:\"sort_and_results_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:35:\"sort_and_results_distance_from_grid\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:50;s:5:\"sizes\";a:0:{}}s:16:\"sort_title_color\";s:7:\"#222222\";s:21:\"sort_title_typography\";s:6:\"custom\";s:22:\"sort_title_font_family\";s:7:\"Poppins\";s:20:\"sort_title_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}s:22:\"sort_title_font_weight\";s:3:\"600\";s:19:\"filters_bg_color_hr\";s:7:\"#FF4F40\";s:27:\"filters_transition_duration\";d:0.5;s:29:\"filters_typography_typography\";s:6:\"custom\";s:30:\"filters_typography_font_family\";s:7:\"Poppins\";s:28:\"filters_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:26:\"filters_distance_from_grid\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:28;s:5:\"sizes\";a:0:{}}s:15:\"filters_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"2\";s:5:\"right\";s:2:\"22\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:2:\"22\";s:8:\"isLinked\";b:0;}s:14:\"filters_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:1;}s:16:\"layout_gutter_vr\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:50;s:5:\"sizes\";a:0:{}}s:17:\"grid_item_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"10\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:13:\"results_color\";s:7:\"#777777\";s:18:\"results_typography\";s:6:\"custom\";s:19:\"results_font_family\";s:7:\"Poppins\";s:17:\"results_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:13:\"sorting_color\";s:7:\"#777777\";s:18:\"sorting_typography\";s:6:\"custom\";s:19:\"sorting_font_family\";s:7:\"Poppins\";s:17:\"sorting_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:14:\"filters_margin\";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:16:\"pagination_color\";s:7:\"#7E7E7E\";s:19:\"pagination_bg_color\";s:9:\"#FF4F4000\";s:23:\"pagination_border_color\";s:7:\"#CDCDCD\";s:23:\"pagination_loader_color\";s:7:\"#FF4F40\";s:22:\"pagination_bg_color_hr\";s:7:\"#FF4F40\";s:26:\"pagination_border_color_hr\";s:7:\"#FF4F40\";s:30:\"pagination_transition_duration\";d:0.5;s:32:\"pagination_typography_typography\";s:6:\"custom\";s:33:\"pagination_typography_font_family\";s:7:\"Poppins\";s:31:\"pagination_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"pagination_border_type\";s:5:\"solid\";s:18:\"pagination_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"8\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:1:\"8\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:0;}s:17:\"pagination_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:1;}s:23:\"pagination_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:29:\"pagination_distance_from_grid\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:48;s:5:\"sizes\";a:0:{}}s:33:\"title_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:41:\"product_price_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:39:\"add_to_cart_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:27:\"sort_title_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}s:24:\"results_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:24:\"sorting_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:35:\"filters_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:22:\"filters_padding_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"3\";s:5:\"right\";s:1:\"6\";s:6:\"bottom\";s:1:\"3\";s:4:\"left\";s:1:\"6\";s:8:\"isLinked\";b:0;}s:28:\"grid_linked_products_heading\";s:27:\"You may be interested in...\";s:18:\"filters_hide_empty\";s:3:\"yes\";s:13:\"filters_align\";s:4:\"left\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:12:\"wpr-woo-grid\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}}'),(554,351,'_elementor_page_assets','a:0:{}'),(555,351,'_wp_old_slug','user-product_archive-woo-shop-v1-products'),(556,351,'_wp_old_slug','user-product_archive-shopdiko-v-v1-shop'),(557,351,'_wp_old_slug','user-product_archive-shopdiko-v1-shop'),(558,351,'_wp_old_slug','user-product_archive-woo-shop-v1-shop'),(704,409,'_thumbnail_id','2316'),(705,409,'total_sales','0'),(706,409,'_tax_status','taxable'),(707,409,'_tax_class',''),(708,409,'_manage_stock','no'),(709,409,'_backorders','no'),(710,409,'_sold_individually','no'),(711,409,'_virtual','no'),(712,409,'_downloadable','no'),(713,409,'_download_limit','-1'),(714,409,'_download_expiry','-1'),(715,409,'_stock',NULL),(716,409,'_stock_status','instock'),(717,409,'_wc_average_rating','0'),(718,409,'_wc_review_count','0'),(719,409,'_product_version','7.1.0'),(721,409,'_regular_price','10'),(722,409,'_price','10'),(723,409,'_product_attributes','a:1:{s:5:\"color\";a:6:{s:4:\"name\";s:5:\"Color\";s:5:\"value\";s:30:\"Green | Yellow | Brown | White\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}}'),(724,409,'_sku','547568769'),(725,409,'_weight','0.02'),(726,409,'_length','12'),(727,409,'_width','45'),(728,409,'_height','23'),(733,1785,'_form','<label> First Name\n [text* first-name] </label>\n\n<label> Last Name\n [text* last-name] </label>\n\n<label>Email\n [email* your-email] </label>\n\n<label> Business/Organisation Name\n [text business-name] </label>\n\n<Label>Phone Number\n[tel* Contact-number]</label>\n\n[submit \"Submit\"]'),(734,1785,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:19:\"[_site_admin_email]\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(735,1785,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:50:\"[_site_title] <wordpress@nicktesting.kinsta.cloud>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(736,1785,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";}'),(737,1785,'_additional_settings','skip_mail: on'),(738,1785,'_locale','en_US'),(740,1943,'_elementor_template_type','wpr-popups'),(741,1943,'_wp_page_template','default'),(742,1943,'_elementor_edit_mode','builder'),(743,1943,'_elementor_version','3.7.0'),(744,1943,'_elementor_page_settings','a:6:{s:22:\"popup_show_again_delay\";s:6:\"300000\";s:11:\"popup_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:550;s:5:\"sizes\";a:0:{}}s:15:\"popup_animation\";s:8:\"fadeInUp\";s:22:\"popup_container_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"6\";s:5:\"right\";s:1:\"6\";s:6:\"bottom\";s:1:\"6\";s:4:\"left\";s:1:\"6\";s:8:\"isLinked\";b:1;}s:27:\"popup_overlay_bg_background\";s:7:\"classic\";s:22:\"popup_overlay_bg_color\";s:9:\"#77777791\";}'),(745,1943,'_elementor_data','a:1:{i:0;a:5:{s:2:\"id\";s:8:\"6e026067\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:2:{s:14:\"hover_parallax\";a:2:{i:0;a:4:{s:17:\"layer_position_vr\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}s:17:\"layer_position_hr\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"3eb3352\";s:17:\"repeater_bg_image\";a:2:{s:2:\"id\";i:1945;s:3:\"url\";s:87:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/08/placeholder-1.png\";}}i:1;a:4:{s:17:\"layer_position_vr\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;s:5:\"sizes\";a:0:{}}s:17:\"layer_position_hr\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"993737c\";s:17:\"repeater_bg_image\";a:2:{s:2:\"id\";i:1946;s:3:\"url\";s:87:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/08/placeholder-2.png\";}}}s:8:\"bg_image\";a:2:{s:2:\"id\";i:1944;s:3:\"url\";s:85:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/08/placeholder.png\";}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:8:\"3fadfa52\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:2:{s:12:\"_column_size\";i:100;s:12:\"_inline_size\";N;}s:8:\"elements\";a:3:{i:0;a:5:{s:2:\"id\";s:8:\"55f859d4\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:6:{s:5:\"title\";s:24:\"Royal Addons Woo Builder\";s:5:\"align\";s:6:\"center\";s:11:\"title_color\";s:7:\"#222222\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}i:1;a:5:{s:2:\"id\";s:8:\"49085a1f\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:5:{s:6:\"editor\";s:512:\"<p style=\"text-align: center;\">Every Part of this KIT is created with Elementor <span style=\"color: #993366;\"><strong>FREE</strong></span> & Royal Elementor addons theme builder, so you can <strong>Change & Customize everything</strong> with Elementor Visual Editor. Learn more about <a href=\"https://www.youtube.com/watch?v=cwkhwO_rPuo\" target=\"_blank\" rel=\"noopener\">Theme builder</a> & <a href=\"https://www.youtube.com/watch?v=f_3tNiBC3dw\" target=\"_blank\" rel=\"noopener\">Woocomerce Builder</a></p>\";s:10:\"text_color\";s:7:\"#525252\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:11:\"text-editor\";}i:2;a:5:{s:2:\"id\";s:8:\"4e7aefb1\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:4:{s:30:\"popup_trigger_show_again_delay\";s:6:\"300000\";s:18:\"popup_trigger_text\";s:26:\"Thank You! That\'s Amazing!\";s:22:\"popup_trigger_bg_color\";s:7:\"#7B51AD\";s:25:\"popup_trigger_bg_color_hr\";s:7:\"#7B51AD\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:17:\"wpr-popup-trigger\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}}'),(746,1943,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(747,2082,'_elementor_edit_mode','builder'),(748,2082,'_elementor_template_type','wp-post'),(749,2082,'_elementor_version','3.7.0'),(750,2082,'_wp_page_template','default'),(751,2082,'_elementor_data','a:1:{i:0;a:5:{s:2:\"id\";s:7:\"248308b\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:12:{s:9:\"structure\";s:2:\"40\";s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"ae0e62a\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"3f21e15\";}}s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:4:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:19:\"background_position\";s:13:\"center center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";s:24:\"background_overlay_color\";s:7:\"#252525\";s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"30\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"30\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:1;}s:16:\"background_color\";s:7:\"#FFFFFF\";s:15:\"column_position\";s:3:\"top\";s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"15\";s:5:\"right\";s:2:\"15\";s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"15\";s:8:\"isLinked\";b:1;}}s:8:\"elements\";a:4:{i:0;a:5:{s:2:\"id\";s:8:\"7eebf39d\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:4:{s:12:\"_column_size\";i:25;s:12:\"_inline_size\";i:25;s:19:\"_inline_size_tablet\";i:50;s:13:\"margin_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"30\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:3:{i:0;a:5:{s:2:\"id\";s:8:\"1339c833\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:7:{s:5:\"title\";s:4:\"Sale\";s:11:\"title_color\";s:7:\"#222222\";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:\"600\";s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}i:1;a:5:{s:2:\"id\";s:8:\"32daa88c\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:7:{s:5:\"width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:5:\"align\";s:4:\"left\";s:4:\"text\";s:7:\"Divider\";s:5:\"color\";s:7:\"#FF4F40\";s:6:\"weight\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:3:\"gap\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:7:\"_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"-8\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"divider\";}i:2;a:5:{s:2:\"id\";s:8:\"7f88c173\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:53:{s:15:\"query_selection\";s:6:\"manual\";s:21:\"query_manual_products\";a:3:{i:0;s:3:\"404\";i:1;s:3:\"407\";i:2;s:3:\"409\";}s:20:\"query_posts_per_page\";i:3;s:20:\"query_not_found_text\";s:15:\"No Posts Found!\";s:13:\"layout_select\";s:4:\"list\";s:14:\"layout_columns\";s:1:\"1\";s:21:\"layout_columns_tablet\";s:1:\"1\";s:16:\"layout_gutter_vr\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:14:\"layout_filters\";s:0:\"\";s:17:\"layout_pagination\";s:0:\"\";s:23:\"layout_slides_to_scroll\";i:1;s:28:\"grid_linked_products_heading\";s:27:\"You may be interested in...\";s:13:\"grid_elements\";a:2:{i:0;a:5:{s:3:\"_id\";s:7:\"80bffb0\";s:15:\"element_tax_sep\";s:2:\", \";s:26:\"element_addcart_simple_txt\";s:11:\"Add to Cart\";s:27:\"element_addcart_grouped_txt\";s:14:\"Select Options\";s:28:\"element_addcart_variable_txt\";s:13:\"View Products\";}i:1;a:6:{s:14:\"element_select\";s:5:\"price\";s:3:\"_id\";s:7:\"226ad59\";s:15:\"element_tax_sep\";s:2:\", \";s:26:\"element_addcart_simple_txt\";s:11:\"Add to Cart\";s:27:\"element_addcart_grouped_txt\";s:14:\"Select Options\";s:28:\"element_addcart_variable_txt\";s:13:\"View Products\";}}s:16:\"filters_all_text\";s:3:\"All\";s:21:\"pagination_older_text\";s:11:\"Older Posts\";s:21:\"pagination_newer_text\";s:11:\"Newer Posts\";s:20:\"pagination_prev_text\";s:13:\"Previous Page\";s:20:\"pagination_next_text\";s:9:\"Next Page\";s:21:\"pagination_first_text\";s:10:\"First Page\";s:20:\"pagination_last_text\";s:9:\"Last Page\";s:25:\"pagination_load_more_text\";s:9:\"Load More\";s:22:\"pagination_finish_text\";s:15:\"End of Content.\";s:17:\"grid_item_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:25:\"title_transition_duration\";d:0.2;s:27:\"title_typography_typography\";s:6:\"custom\";s:28:\"title_typography_font_family\";s:7:\"Poppins\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:33:\"title_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:33:\"title_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:19;s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";s:3:\"500\";s:28:\"title_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1;s:5:\"sizes\";a:0:{}}s:35:\"title_typography_line_height_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:13:\"title_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"11\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:13:\"excerpt_color\";s:7:\"#6A6A6A\";s:19:\"product_price_color\";s:7:\"#FF4F40\";s:35:\"product_price_typography_typography\";s:6:\"custom\";s:36:\"product_price_typography_font_family\";s:7:\"Poppins\";s:34:\"product_price_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:36:\"product_price_typography_font_weight\";s:3:\"400\";s:17:\"lightbox_color_hr\";s:7:\"#605BE5\";s:21:\"lightbox_text_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:5;s:5:\"sizes\";a:0:{}}s:16:\"separator1_color\";s:7:\"#E8E8E8\";s:17:\"separator1_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";i:15;s:5:\"right\";i:0;s:6:\"bottom\";i:15;s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:17:\"separator2_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";i:15;s:5:\"right\";i:0;s:6:\"bottom\";i:15;s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:28:\"grid_slider_nav_border_color\";s:21:\"rgba(255,255,255,0.8)\";s:34:\"grid_slider_nav_hover_border_color\";s:0:\"\";s:29:\"grid_slider_dots_border_color\";s:0:\"\";s:36:\"grid_slider_dots_active_border_color\";s:0:\"\";s:16:\"filters_color_hr\";s:7:\"#ffffff\";s:16:\"pagination_color\";s:7:\"#ffffff\";s:19:\"pagination_color_hr\";s:7:\"#ffffff\";s:29:\"pagination_distance_from_grid\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}s:21:\"layout_columns_laptop\";s:1:\"1\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:12:\"wpr-woo-grid\";}}s:7:\"isInner\";b:0;}i:1;a:5:{s:2:\"id\";s:8:\"512af4e8\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:4:{s:12:\"_column_size\";i:25;s:12:\"_inline_size\";d:25.877;s:19:\"_inline_size_tablet\";i:50;s:13:\"margin_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"30\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:3:{i:0;a:5:{s:2:\"id\";s:8:\"7077b5fc\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:7:{s:5:\"title\";s:8:\"Featured\";s:11:\"title_color\";s:7:\"#222222\";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:\"600\";s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}i:1;a:5:{s:2:\"id\";s:8:\"5648cc81\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:7:{s:5:\"width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:5:\"align\";s:4:\"left\";s:4:\"text\";s:7:\"Divider\";s:5:\"color\";s:7:\"#FF4F40\";s:6:\"weight\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:3:\"gap\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:7:\"_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"-8\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"divider\";}i:2;a:5:{s:2:\"id\";s:8:\"1796c9b8\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:53:{s:15:\"query_selection\";s:6:\"manual\";s:21:\"query_manual_products\";a:3:{i:0;s:2:\"44\";i:1;s:2:\"53\";i:2;s:2:\"71\";}s:20:\"query_posts_per_page\";i:3;s:20:\"query_not_found_text\";s:15:\"No Posts Found!\";s:13:\"layout_select\";s:4:\"list\";s:14:\"layout_columns\";s:1:\"1\";s:21:\"layout_columns_tablet\";s:1:\"1\";s:16:\"layout_gutter_vr\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:14:\"layout_filters\";s:0:\"\";s:17:\"layout_pagination\";s:0:\"\";s:23:\"layout_slides_to_scroll\";i:1;s:28:\"grid_linked_products_heading\";s:27:\"You may be interested in...\";s:13:\"grid_elements\";a:2:{i:0;a:5:{s:3:\"_id\";s:7:\"80bffb0\";s:15:\"element_tax_sep\";s:2:\", \";s:26:\"element_addcart_simple_txt\";s:11:\"Add to Cart\";s:27:\"element_addcart_grouped_txt\";s:14:\"Select Options\";s:28:\"element_addcart_variable_txt\";s:13:\"View Products\";}i:1;a:6:{s:14:\"element_select\";s:5:\"price\";s:3:\"_id\";s:7:\"226ad59\";s:15:\"element_tax_sep\";s:2:\", \";s:26:\"element_addcart_simple_txt\";s:11:\"Add to Cart\";s:27:\"element_addcart_grouped_txt\";s:14:\"Select Options\";s:28:\"element_addcart_variable_txt\";s:13:\"View Products\";}}s:16:\"filters_all_text\";s:3:\"All\";s:21:\"pagination_older_text\";s:11:\"Older Posts\";s:21:\"pagination_newer_text\";s:11:\"Newer Posts\";s:20:\"pagination_prev_text\";s:13:\"Previous Page\";s:20:\"pagination_next_text\";s:9:\"Next Page\";s:21:\"pagination_first_text\";s:10:\"First Page\";s:20:\"pagination_last_text\";s:9:\"Last Page\";s:25:\"pagination_load_more_text\";s:9:\"Load More\";s:22:\"pagination_finish_text\";s:15:\"End of Content.\";s:17:\"grid_item_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:25:\"title_transition_duration\";d:0.2;s:27:\"title_typography_typography\";s:6:\"custom\";s:28:\"title_typography_font_family\";s:7:\"Poppins\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:33:\"title_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:33:\"title_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:19;s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";s:3:\"500\";s:28:\"title_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1;s:5:\"sizes\";a:0:{}}s:35:\"title_typography_line_height_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:13:\"title_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"11\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:13:\"excerpt_color\";s:7:\"#6A6A6A\";s:19:\"product_price_color\";s:7:\"#FF4F40\";s:35:\"product_price_typography_typography\";s:6:\"custom\";s:36:\"product_price_typography_font_family\";s:7:\"Poppins\";s:34:\"product_price_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:36:\"product_price_typography_font_weight\";s:3:\"400\";s:17:\"lightbox_color_hr\";s:7:\"#605BE5\";s:21:\"lightbox_text_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:5;s:5:\"sizes\";a:0:{}}s:16:\"separator1_color\";s:7:\"#E8E8E8\";s:17:\"separator1_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";i:15;s:5:\"right\";i:0;s:6:\"bottom\";i:15;s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:17:\"separator2_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";i:15;s:5:\"right\";i:0;s:6:\"bottom\";i:15;s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:28:\"grid_slider_nav_border_color\";s:21:\"rgba(255,255,255,0.8)\";s:34:\"grid_slider_nav_hover_border_color\";s:0:\"\";s:29:\"grid_slider_dots_border_color\";s:0:\"\";s:36:\"grid_slider_dots_active_border_color\";s:0:\"\";s:16:\"filters_color_hr\";s:7:\"#ffffff\";s:16:\"pagination_color\";s:7:\"#ffffff\";s:19:\"pagination_color_hr\";s:7:\"#ffffff\";s:29:\"pagination_distance_from_grid\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}s:21:\"layout_columns_laptop\";s:1:\"1\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:12:\"wpr-woo-grid\";}}s:7:\"isInner\";b:0;}i:2;a:5:{s:2:\"id\";s:8:\"37c3f3d1\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:4:{s:12:\"_column_size\";i:25;s:12:\"_inline_size\";d:24.101;s:19:\"_inline_size_tablet\";i:50;s:13:\"margin_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"10\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:3:{i:0;a:5:{s:2:\"id\";s:8:\"34eece83\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:7:{s:5:\"title\";s:9:\"Marketing\";s:11:\"title_color\";s:7:\"#222222\";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:\"600\";s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}i:1;a:5:{s:2:\"id\";s:8:\"399dfbe3\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:7:{s:5:\"width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:5:\"align\";s:4:\"left\";s:4:\"text\";s:7:\"Divider\";s:5:\"color\";s:7:\"#FF4F40\";s:6:\"weight\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:3:\"gap\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:7:\"_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"-8\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"divider\";}i:2;a:5:{s:2:\"id\";s:7:\"5008af1\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:12:{s:9:\"page_list\";a:8:{i:0;a:4:{s:20:\"page_list_item_title\";s:16:\"Content Analyze \";s:24:\"page_list_item_sub_title\";s:0:\"\";s:3:\"_id\";s:7:\"f001d71\";s:25:\"page_list_item_badge_text\";s:5:\"Badge\";}i:1;a:6:{s:20:\"page_list_item_title\";s:18:\"Project Management\";s:24:\"page_list_item_sub_title\";s:0:\"\";s:25:\"show_page_list_item_badge\";s:3:\"yes\";s:25:\"page_list_item_badge_text\";s:8:\"Trending\";s:14:\"badge_bg_color\";s:7:\"#34ADFF\";s:3:\"_id\";s:7:\"a607540\";}i:2;a:4:{s:20:\"page_list_item_title\";s:13:\"CEO Documents\";s:24:\"page_list_item_sub_title\";s:0:\"\";s:25:\"page_list_item_badge_text\";s:5:\"Badge\";s:3:\"_id\";s:7:\"b1e1c80\";}i:3;a:6:{s:20:\"page_list_item_title\";s:12:\"Pricing Plan\";s:24:\"page_list_item_sub_title\";s:0:\"\";s:25:\"show_page_list_item_badge\";s:3:\"yes\";s:25:\"page_list_item_badge_text\";s:3:\"Hot\";s:14:\"badge_bg_color\";s:7:\"#2FCE9E\";s:3:\"_id\";s:7:\"603a14e\";}i:4;a:4:{s:20:\"page_list_item_title\";s:15:\"Email Marketing\";s:24:\"page_list_item_sub_title\";s:0:\"\";s:25:\"page_list_item_badge_text\";s:5:\"Badge\";s:3:\"_id\";s:7:\"b225c8c\";}i:5;a:4:{s:20:\"page_list_item_title\";s:26:\"Search Engine Optimization\";s:24:\"page_list_item_sub_title\";s:0:\"\";s:25:\"page_list_item_badge_text\";s:5:\"Badge\";s:3:\"_id\";s:7:\"4aeab13\";}i:6;a:4:{s:20:\"page_list_item_title\";s:13:\"CEO Documents\";s:24:\"page_list_item_sub_title\";s:0:\"\";s:25:\"page_list_item_badge_text\";s:5:\"Badge\";s:3:\"_id\";s:7:\"033f7c1\";}i:7;a:6:{s:20:\"page_list_item_title\";s:18:\"Project Management\";s:24:\"page_list_item_sub_title\";s:0:\"\";s:25:\"show_page_list_item_badge\";s:3:\"yes\";s:25:\"page_list_item_badge_text\";s:3:\"New\";s:14:\"badge_bg_color\";s:7:\"#FFA634\";s:3:\"_id\";s:7:\"7e22654\";}}s:22:\"page_list_item_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"7\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"7\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:0:\"\";}s:26:\"page_list_item_title_color\";s:7:\"#333333\";s:34:\"page_list_item_transition_duration\";d:0.6;s:37:\"page_list_item_title_typo_font_family\";s:4:\"Lato\";s:29:\"page_list_item_title_color_hr\";s:7:\"#409FFE\";s:20:\"badge_border_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"7\";s:6:\"bottom\";s:1:\"3\";s:4:\"left\";s:1:\"7\";s:8:\"isLinked\";b:0;}s:19:\"badge_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"3\";s:5:\"right\";s:1:\"3\";s:6:\"bottom\";s:1:\"3\";s:4:\"left\";s:1:\"3\";s:8:\"isLinked\";b:1;}s:26:\"page_list_item_border_type\";s:4:\"none\";s:7:\"_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:3:\"-10\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:37:\"page_list_item_title_typo_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:14:\"title_distance\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:13:\"wpr-page-list\";}}s:7:\"isInner\";b:0;}i:3;a:5:{s:2:\"id\";s:8:\"45adbf39\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:3:{s:12:\"_column_size\";i:25;s:12:\"_inline_size\";N;s:19:\"_inline_size_tablet\";i:50;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:8:\"1093ebbb\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:40:{s:5:\"image\";a:4:{s:3:\"url\";s:78:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/11/1111.jpg\";s:2:\"id\";i:2032;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:13:\"content_title\";s:18:\"Endless <br>Summer\";s:16:\"content_btn_text\";s:10:\"Click here\";s:13:\"overlay_color\";s:9:\"#3D423D1F\";s:19:\"overlay_hover_color\";s:9:\"#3D423D69\";s:19:\"content_description\";s:0:\"\";s:17:\"content_link_type\";s:3:\"box\";s:16:\"border_animation\";s:4:\"jazz\";s:22:\"border_animation_color\";s:9:\"#FFFFFF24\";s:22:\"border_animation_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:18:\"content_min_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:352;s:5:\"sizes\";a:0:{}}s:15:\"content_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"30\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"30\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:0;}s:19:\"content_vr_position\";s:6:\"bottom\";s:21:\"content_icon_distance\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:35:\"content_title_typography_typography\";s:6:\"custom\";s:36:\"content_title_typography_font_family\";s:7:\"Poppins\";s:34:\"content_title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:45;s:5:\"sizes\";a:0:{}}s:36:\"content_title_typography_font_weight\";s:3:\"900\";s:39:\"content_title_typography_text_transform\";s:9:\"uppercase\";s:36:\"content_title_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.9;s:5:\"sizes\";a:0:{}}s:22:\"content_title_distance\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:41:\"content_description_typography_typography\";s:6:\"custom\";s:42:\"content_description_typography_font_family\";s:4:\"Lato\";s:40:\"content_description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:42:\"content_description_typography_font_weight\";s:3:\"400\";s:28:\"content_description_distance\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:10;s:5:\"sizes\";a:0:{}}s:25:\"btn_typography_typography\";s:6:\"custom\";s:26:\"btn_typography_font_family\";s:7:\"Poppins\";s:24:\"btn_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:26:\"btn_typography_font_weight\";s:3:\"400\";s:29:\"btn_typography_text_transform\";s:9:\"uppercase\";s:11:\"btn_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"9\";s:5:\"right\";s:2:\"35\";s:6:\"bottom\";s:1:\"9\";s:4:\"left\";s:2:\"35\";s:8:\"isLinked\";b:0;}s:16:\"btn_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:17:\"btn_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:25:\"content_min_height_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:422;s:5:\"sizes\";a:0:{}}s:25:\"content_min_height_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:443;s:5:\"sizes\";a:0:{}}s:41:\"content_title_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:55;s:5:\"sizes\";a:0:{}}s:41:\"content_title_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:50;s:5:\"sizes\";a:0:{}}s:43:\"content_title_typography_line_height_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:12:\"content_link\";a:4:{s:3:\"url\";s:59:\"https://wordpressdemo.subscriptionflow.com/shop-wooshop-v1/\";s:11:\"is_external\";s:0:\"\";s:8:\"nofollow\";s:0:\"\";s:17:\"custom_attributes\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:13:\"wpr-promo-box\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}}'),(752,2082,'_elementor_page_assets','a:0:{}'),(820,2082,'_elementor_page_settings',''),(825,1678,'_elementor_page_settings',''),(826,1679,'_elementor_page_settings',''),(886,18,'_edit_lock','1673351758:1'),(887,2090,'_elementor_edit_mode','builder'),(888,2090,'_elementor_template_type','wp-page'),(889,2090,'_elementor_version','3.6.8'),(890,2090,'_wp_page_template','elementor_canvas'),(891,2090,'_elementor_data','s:55763:\"a:9:{i:0;a:5:{s:2:\"id\";s:7:\"638551d\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:5:{s:6:\"layout\";s:10:\"full_width\";s:3:\"gap\";s:2:\"no\";s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"10f834f\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"e37e7f2\";}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";i:0;s:6:\"bottom\";s:0:\"\";s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:7:\"z_index\";i:0;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"beec109\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:2:{s:12:\"_column_size\";i:100;s:12:\"_inline_size\";N;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"b8cb4dd\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:40:{s:12:\"slider_items\";a:2:{i:0;a:10:{s:17:\"slider_item_title\";s:14:\"Endless Summer\";s:21:\"slider_item_sub_title\";s:23:\"Bring On The Summer Hit\";s:23:\"slider_item_description\";s:284:\"Bed sincerity yet therefore forfeited his certainty neglected questions. Pursuit chamber as elderly amongst on. Distant however warrant farther to of. My justice wishing prudent waiting in be. Comparison age not pianoforte increasing delightful now. Ladies others the six desire age. \";s:22:\"slider_item_btn_text_1\";s:18:\"Explore Collection\";s:22:\"slider_item_btn_text_2\";s:8:\"Button 2\";s:22:\"slider_item_overlay_bg\";s:9:\"#3D423D40\";s:3:\"_id\";s:7:\"090270f\";s:20:\"slider_item_bg_image\";a:4:{s:3:\"url\";s:81:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/home1-2.jpg\";s:2:\"id\";i:84;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:17:\"slider_item_btn_2\";s:0:\"\";s:21:\"slider_item_btn_url_1\";a:4:{s:3:\"url\";s:59:\"https://wordpressdemo.subscriptionflow.com/shop-wooshop-v1/\";s:11:\"is_external\";s:0:\"\";s:8:\"nofollow\";s:0:\"\";s:17:\"custom_attributes\";s:0:\"\";}}i:1;a:10:{s:17:\"slider_item_title\";s:14:\"Endless Summer\";s:21:\"slider_item_sub_title\";s:25:\"Beige Summer Hot Dresses\";s:23:\"slider_item_description\";s:316:\"Slider 2 Description Text, Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur laoreet cursus volutpat. Aliquam sit amet ligula et justo tincidunt laoreet non vitae lorem. Ladies others the six desire age. Bred am soon park past read by lain. As excuse eldest no moment. An delight beloved up garrets.\";s:22:\"slider_item_btn_text_1\";s:12:\"Purchase Now\";s:22:\"slider_item_btn_text_2\";s:8:\"Button 2\";s:22:\"slider_item_overlay_bg\";s:9:\"#3D423D40\";s:3:\"_id\";s:7:\"56d5c9c\";s:20:\"slider_item_bg_image\";a:4:{s:3:\"url\";s:79:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-1.jpg\";s:2:\"id\";i:27;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:17:\"slider_item_btn_2\";s:0:\"\";s:21:\"slider_item_btn_url_1\";a:4:{s:3:\"url\";s:59:\"https://wordpressdemo.subscriptionflow.com/shop-wooshop-v1/\";s:11:\"is_external\";s:0:\"\";s:8:\"nofollow\";s:0:\"\";s:17:\"custom_attributes\";s:0:\"\";}}}s:13:\"slider_height\";a:3:{s:4:\"unit\";s:2:\"vh\";s:4:\"size\";i:90;s:5:\"sizes\";a:0:{}}s:17:\"slider_content_hr\";s:5:\"right\";s:20:\"slider_content_align\";s:5:\"right\";s:20:\"slider_content_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:877;s:5:\"sizes\";a:0:{}}s:22:\"slider_content_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"10\";s:5:\"right\";s:3:\"150\";s:6:\"bottom\";s:2:\"50\";s:4:\"left\";s:2:\"50\";s:8:\"isLinked\";b:0;}s:34:\"slider_title_typography_typography\";s:6:\"custom\";s:35:\"slider_title_typography_font_family\";s:7:\"Poppins\";s:33:\"slider_title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:35:\"slider_title_typography_font_weight\";s:3:\"400\";s:38:\"slider_title_typography_text_transform\";s:9:\"uppercase\";s:38:\"slider_sub_title_typography_typography\";s:6:\"custom\";s:39:\"slider_sub_title_typography_font_family\";s:13:\"Abril Fatface\";s:37:\"slider_sub_title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:95;s:5:\"sizes\";a:0:{}}s:39:\"slider_sub_title_typography_font_weight\";s:3:\"500\";s:40:\"slider_description_typography_typography\";s:6:\"custom\";s:41:\"slider_description_typography_font_family\";s:4:\"Lato\";s:39:\"slider_description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:41:\"slider_description_typography_font_weight\";s:3:\"400\";s:20:\"slider_nav_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:20:\"slider_height_tablet\";a:3:{s:4:\"unit\";s:2:\"vh\";s:4:\"size\";i:92;s:5:\"sizes\";a:0:{}}s:20:\"slider_height_mobile\";a:3:{s:4:\"unit\";s:2:\"vh\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:39:\"slider_sub_title_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1;s:5:\"sizes\";a:0:{}}s:25:\"btn_transition_duration_1\";d:0.5;s:27:\"btn_typography_1_typography\";s:6:\"custom\";s:28:\"btn_typography_1_font_family\";s:7:\"Poppins\";s:26:\"btn_typography_1_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:28:\"btn_typography_1_font_weight\";s:3:\"400\";s:19:\"btn_border_radius_1\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:24:\"slider_description_color\";s:7:\"#DDDDDD\";s:17:\"slider_nav_mobile\";s:0:\"\";s:29:\"slider_content_padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"50\";s:5:\"right\";s:2:\"80\";s:6:\"bottom\";s:2:\"50\";s:4:\"left\";s:2:\"80\";s:8:\"isLinked\";b:0;}s:29:\"slider_content_padding_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}s:40:\"slider_title_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:40:\"slider_title_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:44:\"slider_sub_title_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:85;s:5:\"sizes\";a:0:{}}s:44:\"slider_sub_title_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:50;s:5:\"sizes\";a:0:{}}s:46:\"slider_description_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:33:\"btn_typography_1_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:33:\"btn_typography_1_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:19:\"wpr-advanced-slider\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}i:1;a:5:{s:2:\"id\";s:7:\"bb0ced0\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:7:{s:9:\"structure\";s:2:\"50\";s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"a4ec657\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"c5ee97b\";}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:3:\"100\";s:5:\"right\";i:0;s:6:\"bottom\";s:2:\"50\";s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}s:13:\"content_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1600;s:5:\"sizes\";a:0:{}}s:3:\"gap\";s:5:\"wider\";s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"30\";s:5:\"right\";i:0;s:6:\"bottom\";s:1:\"0\";s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:5:{i:0;a:5:{s:2:\"id\";s:7:\"52460c6\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:3:{s:12:\"_column_size\";i:20;s:12:\"_inline_size\";N;s:16:\"content_position\";s:6:\"center\";}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"1dede38\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:4:{s:5:\"image\";a:4:{s:3:\"url\";s:80:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-7.png\";s:2:\"id\";i:443;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:5:\"width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:74;s:5:\"sizes\";a:0:{}}s:12:\"width_tablet\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:12:\"width_mobile\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:5:\"image\";}}s:7:\"isInner\";b:0;}i:1;a:5:{s:2:\"id\";s:7:\"0d8a748\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:3:{s:12:\"_column_size\";i:20;s:12:\"_inline_size\";N;s:16:\"content_position\";s:6:\"center\";}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"ed81539\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:4:{s:5:\"image\";a:4:{s:3:\"url\";s:80:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-4.png\";s:2:\"id\";i:439;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:5:\"width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:74;s:5:\"sizes\";a:0:{}}s:12:\"width_tablet\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:12:\"width_mobile\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:5:\"image\";}}s:7:\"isInner\";b:0;}i:2;a:5:{s:2:\"id\";s:7:\"10d00b0\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:3:{s:12:\"_column_size\";i:20;s:12:\"_inline_size\";N;s:16:\"content_position\";s:6:\"center\";}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"639dfd0\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:4:{s:5:\"image\";a:4:{s:3:\"url\";s:80:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-6.png\";s:2:\"id\";i:441;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:5:\"width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:74;s:5:\"sizes\";a:0:{}}s:12:\"width_tablet\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:12:\"width_mobile\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:5:\"image\";}}s:7:\"isInner\";b:0;}i:3;a:5:{s:2:\"id\";s:7:\"4f53fba\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:3:{s:12:\"_column_size\";i:20;s:12:\"_inline_size\";N;s:16:\"content_position\";s:6:\"center\";}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"ccd581c\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:4:{s:5:\"image\";a:4:{s:3:\"url\";s:80:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-3.png\";s:2:\"id\";i:438;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:5:\"width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:74;s:5:\"sizes\";a:0:{}}s:12:\"width_tablet\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:12:\"width_mobile\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:5:\"image\";}}s:7:\"isInner\";b:0;}i:4;a:5:{s:2:\"id\";s:7:\"89963b9\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:3:{s:12:\"_column_size\";i:20;s:12:\"_inline_size\";N;s:16:\"content_position\";s:6:\"center\";}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"653e193\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:4:{s:5:\"image\";a:4:{s:3:\"url\";s:80:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-5.png\";s:2:\"id\";i:440;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:5:\"width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:74;s:5:\"sizes\";a:0:{}}s:12:\"width_tablet\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:12:\"width_mobile\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:5:\"image\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}i:2;a:5:{s:2:\"id\";s:7:\"cc825fd\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:14:{s:6:\"height\";s:10:\"min-height\";s:13:\"custom_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:371;s:5:\"sizes\";a:0:{}}s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:4:{s:3:\"url\";s:80:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-28.jpg\";s:2:\"id\";i:1027;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:19:\"background_position\";s:13:\"center center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"cabb361\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"927a192\";}}s:29:\"background_overlay_background\";s:7:\"classic\";s:24:\"background_overlay_color\";s:9:\"#22272385\";s:26:\"background_overlay_opacity\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.73;s:5:\"sizes\";a:0:{}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:3:\"100\";s:5:\"right\";i:0;s:6:\"bottom\";s:1:\"0\";s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}s:20:\"custom_height_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:262;s:5:\"sizes\";a:0:{}}s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"30\";s:5:\"right\";i:0;s:6:\"bottom\";s:2:\"50\";s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"482ae82\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:2:{s:12:\"_column_size\";i:100;s:12:\"_inline_size\";N;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"6b0998c\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:10:{s:5:\"title\";s:17:\"Featured Products\";s:5:\"align\";s:6:\"center\";s:11:\"title_color\";s:7:\"#FFFFFF\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:22:\"typography_font_weight\";s:3:\"500\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:35;s:5:\"sizes\";a:0:{}}s:25:\"typography_text_transform\";s:9:\"uppercase\";s:7:\"_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"20\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b: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:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}i:3;a:5:{s:2:\"id\";s:7:\"a501e0c\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:14:{s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"ba6bbcc\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"abac5ca\";}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:3:\"-78\";s:5:\"right\";i:0;s:6:\"bottom\";s:3:\"100\";s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}s:24:\"background_overlay_image\";a:4:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:26:\"background_overlay_opacity\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.53;s:5:\"sizes\";a:0:{}}s:16:\"background_image\";a:4:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:19:\"background_position\";s:13:\"center center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";s:27:\"background_overlay_position\";s:13:\"center center\";s:25:\"background_overlay_repeat\";s:9:\"no-repeat\";s:23:\"background_overlay_size\";s:5:\"cover\";s:24:\"background_overlay_color\";s:7:\"#333C2C\";s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:4:\"-118\";s:5:\"right\";i:0;s:6:\"bottom\";s:1:\"0\";s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"a9e4f80\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:2:{s:12:\"_column_size\";i:100;s:12:\"_inline_size\";N;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"c977681\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:75:{s:20:\"query_not_found_text\";s:15:\"No Posts Found!\";s:14:\"layout_filters\";s:0:\"\";s:17:\"layout_pagination\";s:0:\"\";s:13:\"grid_elements\";a:3:{i:0;a:5:{s:3:\"_id\";s:7:\"e49138e\";s:15:\"element_tax_sep\";s:2:\", \";s:26:\"element_addcart_simple_txt\";s:11:\"Add to Cart\";s:27:\"element_addcart_grouped_txt\";s:14:\"Select Options\";s:28:\"element_addcart_variable_txt\";s:13:\"View Products\";}i:1;a:6:{s:14:\"element_select\";s:5:\"price\";s:3:\"_id\";s:7:\"d8ef0e7\";s:15:\"element_tax_sep\";s:2:\", \";s:26:\"element_addcart_simple_txt\";s:11:\"Add to Cart\";s:27:\"element_addcart_grouped_txt\";s:14:\"Select Options\";s:28:\"element_addcart_variable_txt\";s:13:\"View Products\";}i:2;a:6:{s:14:\"element_select\";s:11:\"add-to-cart\";s:3:\"_id\";s:7:\"33d399d\";s:15:\"element_tax_sep\";s:2:\", \";s:26:\"element_addcart_simple_txt\";s:11:\"Add to Cart\";s:27:\"element_addcart_grouped_txt\";s:14:\"Select Options\";s:28:\"element_addcart_variable_txt\";s:13:\"View Products\";}}s:16:\"filters_all_text\";s:3:\"All\";s:21:\"pagination_older_text\";s:11:\"Older Posts\";s:21:\"pagination_newer_text\";s:11:\"Newer Posts\";s:20:\"pagination_prev_text\";s:13:\"Previous Page\";s:20:\"pagination_next_text\";s:9:\"Next Page\";s:21:\"pagination_first_text\";s:10:\"First Page\";s:20:\"pagination_last_text\";s:9:\"Last Page\";s:25:\"pagination_load_more_text\";s:9:\"Load More\";s:22:\"pagination_finish_text\";s:15:\"End of Content.\";s:15:\"query_selection\";s:8:\"featured\";s:14:\"title_color_hr\";s:7:\"#333333\";s:25:\"title_transition_duration\";d:0.5;s:27:\"title_typography_typography\";s:6:\"custom\";s:28:\"title_typography_font_family\";s:7:\"Poppins\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";s:3:\"400\";s:19:\"categories_color_hr\";s:7:\"#CD98CC\";s:32:\"categories_typography_typography\";s:6:\"custom\";s:33:\"categories_typography_font_family\";s:7:\"Poppins\";s:31:\"categories_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:33:\"categories_typography_font_weight\";s:3:\"400\";s:26:\"product_status_os_bg_color\";s:7:\"#FF4F40\";s:36:\"product_status_typography_typography\";s:6:\"custom\";s:37:\"product_status_typography_font_family\";s:7:\"Poppins\";s:35:\"product_status_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:37:\"product_status_typography_font_weight\";s:3:\"400\";s:40:\"product_status_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.2;s:5:\"sizes\";a:0:{}}s:22:\"product_status_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"15\";s:5:\"right\";s:2:\"10\";s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"10\";s:8:\"isLinked\";b:0;}s:21:\"product_status_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"30\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"30\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:1;}s:19:\"product_price_color\";s:7:\"#FF4F40\";s:23:\"product_price_old_color\";s:7:\"#FF7E73\";s:35:\"product_price_typography_typography\";s:6:\"custom\";s:36:\"product_price_typography_font_family\";s:7:\"Poppins\";s:34:\"product_price_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:19;s:5:\"sizes\";a:0:{}}s:36:\"product_price_typography_font_weight\";s:3:\"400\";s:24:\"add_to_cart_border_color\";s:7:\"#FF4F40\";s:20:\"add_to_cart_color_hr\";s:7:\"#FFFFFF\";s:23:\"add_to_cart_bg_color_hr\";s:7:\"#FF4F40\";s:27:\"add_to_cart_border_color_hr\";s:7:\"#FF4F40\";s:31:\"add_to_cart_transition_duration\";d:0.3;s:33:\"add_to_cart_typography_typography\";s:6:\"custom\";s:34:\"add_to_cart_typography_font_family\";s:7:\"Poppins\";s:32:\"add_to_cart_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:34:\"add_to_cart_typography_font_weight\";s:3:\"400\";s:24:\"add_to_cart_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:19:\"add_to_cart_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"8\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:1:\"8\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:0;}s:18:\"add_to_cart_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:20:\"product_price_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"5\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:18:\"cross_sell_heading\";s:27:\"You may be interested in...\";s:14:\"upsell_heading\";s:20:\"You may also like...\";s:12:\"sort_heading\";s:4:\"Shop\";s:22:\"sort_and_results_count\";s:0:\"\";s:20:\"product_rating_color\";s:7:\"#FF4F40\";s:26:\"product_rating_score_color\";s:7:\"#FF4F40\";s:26:\"product_status_ft_bg_color\";s:7:\"#FF4F40\";s:16:\"sort_title_color\";s:7:\"#FFFFFF\";s:13:\"results_color\";s:7:\"#FFFFFF\";s:13:\"sorting_color\";s:7:\"#2D2D2D\";s:31:\"lightbox_typography_font_family\";s:6:\"Roboto\";s:29:\"lightbox_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:88;s:5:\"sizes\";a:0:{}}s:31:\"lightbox_typography_font_weight\";s:3:\"400\";s:21:\"layout_columns_tablet\";s:1:\"3\";s:29:\"sort_and_results_count_tablet\";s:0:\"\";s:29:\"sort_and_results_count_mobile\";s:0:\"\";s:21:\"layout_filters_tablet\";s:0:\"\";s:21:\"layout_filters_mobile\";s:0:\"\";s:33:\"title_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:41:\"product_price_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:39:\"add_to_cart_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:26:\"add_to_cart_padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"7\";s:5:\"right\";s:2:\"25\";s:6:\"bottom\";s:1:\"7\";s:4:\"left\";s:2:\"25\";s:8:\"isLinked\";b:0;}s:28:\"grid_linked_products_heading\";s:27:\"You may be interested in...\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:12:\"wpr-woo-grid\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}i:4;a:5:{s:2:\"id\";s:7:\"2f899db\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:5:{s:13:\"content_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1600;s:5:\"sizes\";a:0:{}}s:9:\"structure\";s:2:\"20\";s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"1e40c7c\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"7e88949\";}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"50\";s:5:\"right\";i:0;s:6:\"bottom\";s:2:\"50\";s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:2:{i:0;a:5:{s:2:\"id\";s:7:\"aed3399\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:3:{s:12:\"_column_size\";i:50;s:12:\"_inline_size\";N;s:19:\"_inline_size_tablet\";i:100;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"6d8f5f6\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:41:{s:5:\"image\";a:4:{s:3:\"url\";s:81:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/promo-1.jpg\";s:2:\"id\";i:264;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:13:\"content_title\";s:18:\"Endless <br>Summer\";s:16:\"content_btn_text\";s:10:\"Click here\";s:13:\"overlay_color\";s:9:\"#3D423D40\";s:19:\"overlay_hover_color\";s:9:\"#3D423D69\";s:19:\"content_description\";s:0:\"\";s:17:\"content_link_type\";s:3:\"box\";s:16:\"border_animation\";s:4:\"jazz\";s:22:\"border_animation_color\";s:9:\"#FFFFFF24\";s:22:\"border_animation_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:18:\"content_min_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:412;s:5:\"sizes\";a:0:{}}s:15:\"content_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"30\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"30\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:0;}s:19:\"content_vr_position\";s:6:\"bottom\";s:13:\"content_align\";s:4:\"left\";s:21:\"content_icon_distance\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:35:\"content_title_typography_typography\";s:6:\"custom\";s:36:\"content_title_typography_font_family\";s:7:\"Poppins\";s:34:\"content_title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:65;s:5:\"sizes\";a:0:{}}s:36:\"content_title_typography_font_weight\";s:3:\"900\";s:39:\"content_title_typography_text_transform\";s:9:\"uppercase\";s:36:\"content_title_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.9;s:5:\"sizes\";a:0:{}}s:22:\"content_title_distance\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:41:\"content_description_typography_typography\";s:6:\"custom\";s:42:\"content_description_typography_font_family\";s:4:\"Lato\";s:40:\"content_description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:42:\"content_description_typography_font_weight\";s:3:\"400\";s:28:\"content_description_distance\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:10;s:5:\"sizes\";a:0:{}}s:25:\"btn_typography_typography\";s:6:\"custom\";s:26:\"btn_typography_font_family\";s:7:\"Poppins\";s:24:\"btn_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:26:\"btn_typography_font_weight\";s:3:\"400\";s:29:\"btn_typography_text_transform\";s:9:\"uppercase\";s:11:\"btn_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"9\";s:5:\"right\";s:2:\"35\";s:6:\"bottom\";s:1:\"9\";s:4:\"left\";s:2:\"35\";s:8:\"isLinked\";b:0;}s:16:\"btn_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:17:\"btn_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:25:\"content_min_height_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:290;s:5:\"sizes\";a:0:{}}s:25:\"content_min_height_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:230;s:5:\"sizes\";a:0:{}}s:41:\"content_title_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:55;s:5:\"sizes\";a:0:{}}s:41:\"content_title_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:35;s:5:\"sizes\";a:0:{}}s:43:\"content_title_typography_line_height_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:12:\"content_link\";a:4:{s:3:\"url\";s:59:\"https://wordpressdemo.subscriptionflow.com/shop-wooshop-v1/\";s:11:\"is_external\";s:0:\"\";s:8:\"nofollow\";s:0:\"\";s:17:\"custom_attributes\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:13:\"wpr-promo-box\";}}s:7:\"isInner\";b:0;}i:1;a:5:{s:2:\"id\";s:7:\"0887efb\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:3:{s:12:\"_column_size\";i:50;s:12:\"_inline_size\";N;s:19:\"_inline_size_tablet\";i:100;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"f40f770\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:37:{s:5:\"image\";a:4:{s:3:\"url\";s:79:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-2.jpg\";s:2:\"id\";i:34;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:13:\"content_title\";s:34:\"APP EXCLUSIVE<br> EXTRA 10% OFF!*\";s:16:\"content_btn_text\";s:10:\"Click here\";s:13:\"overlay_color\";s:9:\"#3D423D40\";s:19:\"overlay_hover_color\";s:9:\"#3D423D69\";s:19:\"content_description\";s:56:\"<p>*Excludes Megan Box, beauty & selected lines.</p>\";s:17:\"content_link_type\";s:3:\"box\";s:22:\"border_animation_color\";s:9:\"#FFFFFF24\";s:22:\"border_animation_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:18:\"content_min_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:412;s:5:\"sizes\";a:0:{}}s:15:\"content_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"30\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"30\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:0;}s:19:\"content_vr_position\";s:3:\"top\";s:13:\"content_align\";s:4:\"left\";s:21:\"content_icon_distance\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:35:\"content_title_typography_typography\";s:6:\"custom\";s:36:\"content_title_typography_font_family\";s:13:\"Abril Fatface\";s:34:\"content_title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:34;s:5:\"sizes\";a:0:{}}s:36:\"content_title_typography_font_weight\";s:3:\"500\";s:22:\"content_title_distance\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:41:\"content_description_typography_typography\";s:6:\"custom\";s:42:\"content_description_typography_font_family\";s:4:\"Lato\";s:40:\"content_description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:42:\"content_description_typography_font_weight\";s:3:\"400\";s:28:\"content_description_distance\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:25:\"btn_typography_typography\";s:6:\"custom\";s:26:\"btn_typography_font_family\";s:7:\"Poppins\";s:24:\"btn_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:26:\"btn_typography_font_weight\";s:3:\"400\";s:29:\"btn_typography_text_transform\";s:9:\"uppercase\";s:11:\"btn_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"9\";s:5:\"right\";s:2:\"35\";s:6:\"bottom\";s:1:\"9\";s:4:\"left\";s:2:\"35\";s:8:\"isLinked\";b:0;}s:16:\"btn_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:17:\"btn_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:25:\"content_min_height_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:290;s:5:\"sizes\";a:0:{}}s:25:\"content_min_height_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:230;s:5:\"sizes\";a:0:{}}s:20:\"content_align_mobile\";s:4:\"left\";s:41:\"content_title_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}s:12:\"content_link\";a:4:{s:3:\"url\";s:59:\"https://wordpressdemo.subscriptionflow.com/shop-wooshop-v1/\";s:11:\"is_external\";s:0:\"\";s:8:\"nofollow\";s:0:\"\";s:17:\"custom_attributes\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:13:\"wpr-promo-box\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}i:5;a:5:{s:2:\"id\";s:7:\"4069cc7\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:3:{s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"ba6bbcc\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"abac5ca\";}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:3:\"100\";s:5:\"right\";i:0;s:6:\"bottom\";s:3:\"100\";s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"b849f95\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:2:{s:12:\"_column_size\";i:100;s:12:\"_inline_size\";N;}s:8:\"elements\";a:2:{i:0;a:5:{s:2:\"id\";s:7:\"df56f06\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:10:{s:5:\"title\";s:13:\"Sale Products\";s:5:\"align\";s:6:\"center\";s:11:\"title_color\";s:7:\"#222222\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:22:\"typography_font_weight\";s:3:\"500\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:35;s:5:\"sizes\";a:0:{}}s:25:\"typography_text_transform\";s:9:\"uppercase\";s:7:\"_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"20\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b: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:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}i:1;a:5:{s:2:\"id\";s:7:\"ec00d4f\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:78:{s:20:\"query_not_found_text\";s:15:\"No Posts Found!\";s:14:\"layout_filters\";s:0:\"\";s:17:\"layout_pagination\";s:0:\"\";s:13:\"grid_elements\";a:3:{i:0;a:5:{s:3:\"_id\";s:7:\"e49138e\";s:15:\"element_tax_sep\";s:2:\", \";s:26:\"element_addcart_simple_txt\";s:11:\"Add to Cart\";s:27:\"element_addcart_grouped_txt\";s:14:\"Select Options\";s:28:\"element_addcart_variable_txt\";s:13:\"View Products\";}i:1;a:6:{s:14:\"element_select\";s:5:\"price\";s:3:\"_id\";s:7:\"d8ef0e7\";s:15:\"element_tax_sep\";s:2:\", \";s:26:\"element_addcart_simple_txt\";s:11:\"Add to Cart\";s:27:\"element_addcart_grouped_txt\";s:14:\"Select Options\";s:28:\"element_addcart_variable_txt\";s:13:\"View Products\";}i:2;a:6:{s:14:\"element_select\";s:11:\"add-to-cart\";s:3:\"_id\";s:7:\"33d399d\";s:15:\"element_tax_sep\";s:2:\", \";s:26:\"element_addcart_simple_txt\";s:11:\"Add to Cart\";s:27:\"element_addcart_grouped_txt\";s:14:\"Select Options\";s:28:\"element_addcart_variable_txt\";s:13:\"View Products\";}}s:16:\"filters_all_text\";s:3:\"All\";s:21:\"pagination_older_text\";s:11:\"Older Posts\";s:21:\"pagination_newer_text\";s:11:\"Newer Posts\";s:20:\"pagination_prev_text\";s:13:\"Previous Page\";s:20:\"pagination_next_text\";s:9:\"Next Page\";s:21:\"pagination_first_text\";s:10:\"First Page\";s:20:\"pagination_last_text\";s:9:\"Last Page\";s:25:\"pagination_load_more_text\";s:9:\"Load More\";s:22:\"pagination_finish_text\";s:15:\"End of Content.\";s:15:\"query_selection\";s:6:\"manual\";s:20:\"query_posts_per_page\";i:6;s:16:\"layout_gutter_vr\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:14:\"title_color_hr\";s:7:\"#333333\";s:25:\"title_transition_duration\";d:0.5;s:27:\"title_typography_typography\";s:6:\"custom\";s:28:\"title_typography_font_family\";s:7:\"Poppins\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";s:3:\"400\";s:19:\"categories_color_hr\";s:7:\"#CD98CC\";s:32:\"categories_typography_typography\";s:6:\"custom\";s:33:\"categories_typography_font_family\";s:7:\"Poppins\";s:31:\"categories_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:33:\"categories_typography_font_weight\";s:3:\"400\";s:26:\"product_status_os_bg_color\";s:7:\"#FF4F40\";s:36:\"product_status_typography_typography\";s:6:\"custom\";s:37:\"product_status_typography_font_family\";s:7:\"Poppins\";s:35:\"product_status_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:37:\"product_status_typography_font_weight\";s:3:\"400\";s:40:\"product_status_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.2;s:5:\"sizes\";a:0:{}}s:22:\"product_status_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"15\";s:5:\"right\";s:2:\"10\";s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"10\";s:8:\"isLinked\";b:0;}s:21:\"product_status_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"30\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"30\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:1;}s:19:\"product_price_color\";s:7:\"#FF4F40\";s:23:\"product_price_old_color\";s:7:\"#FF7E73\";s:35:\"product_price_typography_typography\";s:6:\"custom\";s:36:\"product_price_typography_font_family\";s:7:\"Poppins\";s:34:\"product_price_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:19;s:5:\"sizes\";a:0:{}}s:36:\"product_price_typography_font_weight\";s:3:\"400\";s:24:\"add_to_cart_border_color\";s:7:\"#FF4F40\";s:20:\"add_to_cart_color_hr\";s:7:\"#FFFFFF\";s:23:\"add_to_cart_bg_color_hr\";s:7:\"#FF4F40\";s:27:\"add_to_cart_border_color_hr\";s:7:\"#FF4F40\";s:31:\"add_to_cart_transition_duration\";d:0.3;s:33:\"add_to_cart_typography_typography\";s:6:\"custom\";s:34:\"add_to_cart_typography_font_family\";s:7:\"Poppins\";s:32:\"add_to_cart_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:34:\"add_to_cart_typography_font_weight\";s:3:\"400\";s:24:\"add_to_cart_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:19:\"add_to_cart_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"8\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:1:\"8\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:0;}s:18:\"add_to_cart_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:20:\"product_price_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"5\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:18:\"cross_sell_heading\";s:27:\"You may be interested in...\";s:14:\"upsell_heading\";s:20:\"You may also like...\";s:12:\"sort_heading\";s:4:\"Shop\";s:22:\"sort_and_results_count\";s:0:\"\";s:20:\"product_rating_color\";s:7:\"#FF4F40\";s:26:\"product_rating_score_color\";s:7:\"#FF4F40\";s:26:\"product_status_ft_bg_color\";s:7:\"#FF4F40\";s:21:\"layout_columns_tablet\";s:1:\"2\";s:29:\"sort_and_results_count_tablet\";s:0:\"\";s:29:\"sort_and_results_count_mobile\";s:0:\"\";s:21:\"layout_filters_tablet\";s:0:\"\";s:21:\"layout_filters_mobile\";s:0:\"\";s:33:\"title_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:41:\"product_price_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:39:\"add_to_cart_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:26:\"add_to_cart_padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"7\";s:5:\"right\";s:2:\"25\";s:6:\"bottom\";s:1:\"7\";s:4:\"left\";s:2:\"25\";s:8:\"isLinked\";b:0;}s:31:\"lightbox_typography_font_family\";s:6:\"Roboto\";s:29:\"lightbox_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:88;s:5:\"sizes\";a:0:{}}s:31:\"lightbox_typography_font_weight\";s:3:\"400\";s:16:\"sort_title_color\";s:7:\"#FFFFFF\";s:13:\"results_color\";s:7:\"#FFFFFF\";s:13:\"sorting_color\";s:7:\"#2D2D2D\";s:28:\"grid_linked_products_heading\";s:27:\"You may be interested in...\";s:21:\"query_manual_products\";a:6:{i:0;s:2:\"53\";i:1;s:2:\"83\";i:2;s:3:\"364\";i:3;s:3:\"404\";i:4;s:3:\"407\";i:5;s:3:\"409\";}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:12:\"wpr-woo-grid\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}i:6;a:5:{s:2:\"id\";s:7:\"e245ff9\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:7:{s:6:\"layout\";s:10:\"full_width\";s:3:\"gap\";s:2:\"no\";s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"8edda02\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"2c06388\";}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";i:0;s:6:\"bottom\";s:0:\"\";s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:29:\"background_overlay_background\";s:7:\"classic\";s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"50\";s:5:\"right\";i:0;s:6:\"bottom\";s:2:\"50\";s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"4b3567d\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:2:{s:12:\"_column_size\";i:100;s:12:\"_inline_size\";N;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"46d16c8\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:39:{s:5:\"image\";a:4:{s:3:\"url\";s:81:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/promo-1.jpg\";s:2:\"id\";i:264;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:13:\"content_title\";s:36:\"UP TO 70% OFF!* + <br>FREE DELIVERY!\";s:16:\"content_btn_text\";s:11:\"Join Us Now\";s:13:\"overlay_color\";s:9:\"#3D423D40\";s:19:\"overlay_hover_color\";s:9:\"#3D423D69\";s:18:\"content_min_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:488;s:5:\"sizes\";a:0:{}}s:16:\"border_animation\";s:4:\"none\";s:15:\"content_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"30\";s:5:\"right\";s:3:\"100\";s:6:\"bottom\";s:2:\"30\";s:4:\"left\";s:3:\"100\";s:8:\"isLinked\";b:0;}s:13:\"content_align\";s:4:\"left\";s:35:\"content_title_typography_typography\";s:6:\"custom\";s:36:\"content_title_typography_font_family\";s:13:\"Abril Fatface\";s:34:\"content_title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:70;s:5:\"sizes\";a:0:{}}s:36:\"content_title_typography_font_weight\";s:3:\"500\";s:22:\"content_title_distance\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:41:\"content_description_typography_typography\";s:6:\"custom\";s:42:\"content_description_typography_font_family\";s:4:\"Lato\";s:40:\"content_description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:42:\"content_description_typography_font_weight\";s:3:\"400\";s:28:\"content_description_distance\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:22;s:5:\"sizes\";a:0:{}}s:19:\"content_description\";s:144:\"<p>Answer misery adieus add wooded how nay men before though. <br />Pretended belonging contented mrs suffering favourite you the continual.</p>\";s:25:\"btn_typography_typography\";s:6:\"custom\";s:26:\"btn_typography_font_family\";s:7:\"Poppins\";s:24:\"btn_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:26:\"btn_typography_font_weight\";s:3:\"400\";s:29:\"btn_typography_text_transform\";s:9:\"uppercase\";s:11:\"btn_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"9\";s:5:\"right\";s:2:\"35\";s:6:\"bottom\";s:1:\"9\";s:4:\"left\";s:2:\"35\";s:8:\"isLinked\";b:0;}s:16:\"btn_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:17:\"btn_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:25:\"content_min_height_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:380;s:5:\"sizes\";a:0:{}}s:25:\"content_min_height_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:323;s:5:\"sizes\";a:0:{}}s:22:\"content_padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"30\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"30\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:1;}s:41:\"content_title_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:45;s:5:\"sizes\";a:0:{}}s:41:\"content_title_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}s:47:\"content_description_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:35:\"content_description_distance_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:31:\"btn_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:31:\"btn_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:18:\"btn_padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"8\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:1:\"8\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:0;}s:12:\"content_link\";a:4:{s:3:\"url\";s:35:\"https://royal-elementor-addons.com/\";s:11:\"is_external\";s:0:\"\";s:8:\"nofollow\";s:0:\"\";s:17:\"custom_attributes\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:13:\"wpr-promo-box\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}i:7;a:5:{s:2:\"id\";s:7:\"dcd45f0\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:7:{s:9:\"structure\";s:2:\"40\";s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"a4ec657\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"c5ee97b\";}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";i:0;s:6:\"bottom\";s:0:\"\";s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:6:\"height\";s:10:\"min-height\";s:13:\"custom_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:355;s:5:\"sizes\";a:0:{}}s:20:\"custom_height_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:195;s:5:\"sizes\";a:0:{}}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:4:{i:0;a:5:{s:2:\"id\";s:7:\"324290f\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:4:{s:12:\"_column_size\";i:25;s:12:\"_inline_size\";N;s:16:\"content_position\";s:6:\"center\";s:19:\"_inline_size_tablet\";i:50;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"be768ff\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:20:{s:5:\"image\";a:4:{s:3:\"url\";s:80:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/icon-2.png\";s:2:\"id\";i:251;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:10:\"title_text\";s:13:\"Free Shipping\";s:16:\"description_text\";s:16:\"Orders Over $500\";s:8:\"position\";s:4:\"left\";s:10:\"image_size\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:35;s:5:\"sizes\";a:0:{}}s:13:\"image_opacity\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.54;s:5:\"sizes\";a:0:{}}s:18:\"title_bottom_space\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:11:\"title_color\";s:7:\"#222222\";s:27:\"title_typography_typography\";s:6:\"custom\";s:28:\"title_typography_font_family\";s:7:\"Poppins\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:19;s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";s:3:\"600\";s:33:\"description_typography_typography\";s:6:\"custom\";s:34:\"description_typography_font_family\";s:4:\"Lato\";s:32:\"description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:34:\"description_typography_font_weight\";s:3:\"400\";s:17:\"description_color\";s:7:\"#777777\";s:17:\"image_size_tablet\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:23;s:5:\"sizes\";a:0:{}}s:33:\"title_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:33:\"title_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:9:\"image-box\";}}s:7:\"isInner\";b:0;}i:1;a:5:{s:2:\"id\";s:7:\"128857f\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:4:{s:12:\"_column_size\";i:25;s:12:\"_inline_size\";N;s:16:\"content_position\";s:6:\"center\";s:19:\"_inline_size_tablet\";i:50;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"8320b30\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:20:{s:5:\"image\";a:4:{s:3:\"url\";s:128:\"https://nicktesting.kinsta.cloud/shopdiko1/wp-content/uploads/2022/06/4544829_business_comerce_delivery_mastercard_shop_icon.png\";s:2:\"id\";i:248;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:10:\"title_text\";s:13:\"Quick Payment\";s:16:\"description_text\";s:19:\"100% Secure Payment\";s:8:\"position\";s:4:\"left\";s:10:\"image_size\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:35;s:5:\"sizes\";a:0:{}}s:13:\"image_opacity\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.54;s:5:\"sizes\";a:0:{}}s:18:\"title_bottom_space\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:11:\"title_color\";s:7:\"#222222\";s:27:\"title_typography_typography\";s:6:\"custom\";s:28:\"title_typography_font_family\";s:7:\"Poppins\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:19;s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";s:3:\"600\";s:33:\"description_typography_typography\";s:6:\"custom\";s:34:\"description_typography_font_family\";s:4:\"Lato\";s:32:\"description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:34:\"description_typography_font_weight\";s:3:\"400\";s:17:\"description_color\";s:7:\"#777777\";s:17:\"image_size_tablet\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:23;s:5:\"sizes\";a:0:{}}s:33:\"title_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:33:\"title_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:9:\"image-box\";}}s:7:\"isInner\";b:0;}i:2;a:5:{s:2:\"id\";s:7:\"61ecae8\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:4:{s:12:\"_column_size\";i:25;s:12:\"_inline_size\";N;s:16:\"content_position\";s:6:\"center\";s:19:\"_inline_size_tablet\";i:50;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"c5418a2\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:20:{s:5:\"image\";a:4:{s:3:\"url\";s:130:\"https://nicktesting.kinsta.cloud/shopdiko1/wp-content/uploads/2022/06/4544844_business_comerce_consultation_delivery_shop_icon.png\";s:2:\"id\";i:249;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:10:\"title_text\";s:12:\"24/7 Support\";s:16:\"description_text\";s:13:\"Ready For You\";s:8:\"position\";s:4:\"left\";s:10:\"image_size\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:35;s:5:\"sizes\";a:0:{}}s:13:\"image_opacity\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.54;s:5:\"sizes\";a:0:{}}s:18:\"title_bottom_space\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:11:\"title_color\";s:7:\"#222222\";s:27:\"title_typography_typography\";s:6:\"custom\";s:28:\"title_typography_font_family\";s:7:\"Poppins\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:19;s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";s:3:\"600\";s:33:\"description_typography_typography\";s:6:\"custom\";s:34:\"description_typography_font_family\";s:4:\"Lato\";s:32:\"description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:34:\"description_typography_font_weight\";s:3:\"400\";s:17:\"description_color\";s:7:\"#777777\";s:17:\"image_size_tablet\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:23;s:5:\"sizes\";a:0:{}}s:33:\"title_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:33:\"title_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:9:\"image-box\";}}s:7:\"isInner\";b:0;}i:3;a:5:{s:2:\"id\";s:7:\"acab77b\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:4:{s:12:\"_column_size\";i:25;s:12:\"_inline_size\";N;s:16:\"content_position\";s:6:\"center\";s:19:\"_inline_size_tablet\";i:50;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"151e649\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:20:{s:5:\"image\";a:4:{s:3:\"url\";s:123:\"https://nicktesting.kinsta.cloud/shopdiko1/wp-content/uploads/2022/06/4544846_business_comerce_delivery_money_shop_icon.png\";s:2:\"id\";i:250;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:10:\"title_text\";s:12:\"Money Return\";s:16:\"description_text\";s:17:\"Back Under 7 Days\";s:8:\"position\";s:4:\"left\";s:10:\"image_size\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:35;s:5:\"sizes\";a:0:{}}s:13:\"image_opacity\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.54;s:5:\"sizes\";a:0:{}}s:18:\"title_bottom_space\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:11:\"title_color\";s:7:\"#222222\";s:27:\"title_typography_typography\";s:6:\"custom\";s:28:\"title_typography_font_family\";s:7:\"Poppins\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:19;s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";s:3:\"600\";s:33:\"description_typography_typography\";s:6:\"custom\";s:34:\"description_typography_font_family\";s:4:\"Lato\";s:32:\"description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:34:\"description_typography_font_weight\";s:3:\"400\";s:17:\"description_color\";s:7:\"#777777\";s:17:\"image_size_tablet\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:23;s:5:\"sizes\";a:0:{}}s:33:\"title_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:33:\"title_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:9:\"image-box\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}i:8;a:5:{s:2:\"id\";s:7:\"ac9ee83\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:5:{s:13:\"content_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:902;s:5:\"sizes\";a:0:{}}s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"d992c98\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"e6ecbb7\";}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";i:0;s:6:\"bottom\";s:3:\"100\";s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}s:21:\"background_background\";s:7:\"classic\";}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"adf57eb\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:12:{s:12:\"_column_size\";i:100;s:12:\"_inline_size\";N;s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:4:{s:3:\"url\";s:80:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/07/pic-38.jpg\";s:2:\"id\";i:1741;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:19:\"background_position\";s:13:\"center center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";s:29:\"background_overlay_background\";s:7:\"classic\";s:24:\"background_overlay_color\";s:7:\"#383838\";s:13:\"border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"10\";s:5:\"right\";s:2:\"10\";s:6:\"bottom\";s:2:\"10\";s:4:\"left\";s:2:\"10\";s:8:\"isLinked\";b:1;}s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"50\";s:5:\"right\";s:2:\"50\";s:6:\"bottom\";s:2:\"50\";s:4:\"left\";s:2:\"50\";s:8:\"isLinked\";b:0;}s:14:\"padding_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"25\";s:5:\"right\";s:2:\"25\";s:6:\"bottom\";s:2:\"25\";s:4:\"left\";s:2:\"25\";s:8:\"isLinked\";b:1;}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"d2db07a\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:2:{s:13:\"content_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:540;s:5:\"sizes\";a:0:{}}s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"a00e366\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"07a7e1e\";}}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"455b607\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:2:{s:12:\"_column_size\";i:100;s:12:\"_inline_size\";N;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"70d0b7c\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:51:{s:16:\"show_form_header\";s:3:\"yes\";s:10:\"form_title\";s:17:\"GET DISCOUNT INFO\";s:16:\"form_description\";s:172:\"Detract yet delight written farther his general. If in so bred at dare rose lose good. Feel and make two real miss use easy. Celebrated delightful an especially increasing.\";s:9:\"form_icon\";a:2:{s:5:\"value\";s:0:\"\";s:7:\"library\";s:0:\"\";}s:11:\"email_label\";s:0:\"\";s:17:\"email_placeholder\";s:15:\"sample@mail.com\";s:18:\"subscribe_btn_text\";s:9:\"Subscribe\";s:29:\"subscribe_button_loading_text\";s:14:\"Subscribing...\";s:15:\"success_message\";s:38:\"You have been successfully Subscribed!\";s:13:\"error_message\";s:44:\"Ops! Something went wrong, please try again.\";s:18:\"header_title_color\";s:7:\"#FFFFFF\";s:34:\"header_title_typography_typography\";s:6:\"custom\";s:35:\"header_title_typography_font_family\";s:7:\"Poppins\";s:33:\"header_title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}s:35:\"header_title_typography_font_weight\";s:3:\"400\";s:24:\"header_description_color\";s:7:\"#E0E0E0\";s:40:\"header_description_typography_typography\";s:6:\"custom\";s:41:\"header_description_typography_font_family\";s:4:\"Lato\";s:39:\"header_description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:41:\"header_description_typography_font_weight\";s:3:\"400\";s:20:\"header_desc_distance\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:43;s:5:\"sizes\";a:0:{}}s:25:\"input_transition_duration\";d:0.5;s:27:\"input_typography_typography\";s:6:\"custom\";s:28:\"input_typography_font_family\";s:4:\"Lato\";s:26:\"input_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:28:\"input_typography_font_weight\";s:3:\"400\";s:12:\"input_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:13:\"input_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:18:\"input_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:12:\"input_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:1;}s:33:\"subscribe_btn_bg_color_background\";s:7:\"classic\";s:28:\"subscribe_btn_bg_color_color\";s:7:\"#FF4F40\";s:33:\"subscribe_btn_transition_duration\";d:0.5;s:35:\"subscribe_btn_typography_typography\";s:6:\"custom\";s:36:\"subscribe_btn_typography_font_family\";s:7:\"Poppins\";s:34:\"subscribe_btn_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:36:\"subscribe_btn_typography_font_weight\";s:3:\"400\";s:19:\"subscribe_btn_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:145;s:5:\"sizes\";a:0:{}}s:20:\"subscribe_btn_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:20:\"subscribe_btn_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:1;}s:12:\"labels_color\";s:7:\"#777777\";s:40:\"header_title_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}s:33:\"input_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:41:\"subscribe_btn_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:21:\"success_message_color\";s:7:\"#8EC5A6\";s:19:\"error_message_color\";s:7:\"#FF4F40\";s:16:\"message_color_bg\";s:9:\"#FFFFFF00\";s:29:\"message_typography_typography\";s:6:\"custom\";s:30:\"message_typography_font_family\";s:7:\"Poppins\";s:28:\"message_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:30:\"message_typography_font_weight\";s:3:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:13:\"wpr-mailchimp\";}}s:7:\"isInner\";b:1;}}s:7:\"isInner\";b:1;}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}}\";'),(892,2090,'_elementor_page_assets','a:0:{}'),(893,2090,'_elementor_page_settings',''),(895,2091,'_elementor_edit_mode','builder'),(896,2091,'_elementor_template_type','wp-page'),(897,2091,'_elementor_version','3.6.8'),(898,2091,'_wp_page_template','elementor_canvas'),(899,2091,'_elementor_data','s:55763:\"a:9:{i:0;a:5:{s:2:\"id\";s:7:\"638551d\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:5:{s:6:\"layout\";s:10:\"full_width\";s:3:\"gap\";s:2:\"no\";s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"10f834f\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"e37e7f2\";}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";i:0;s:6:\"bottom\";s:0:\"\";s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:7:\"z_index\";i:0;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"beec109\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:2:{s:12:\"_column_size\";i:100;s:12:\"_inline_size\";N;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"b8cb4dd\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:40:{s:12:\"slider_items\";a:2:{i:0;a:10:{s:17:\"slider_item_title\";s:14:\"Endless Summer\";s:21:\"slider_item_sub_title\";s:23:\"Bring On The Summer Hit\";s:23:\"slider_item_description\";s:284:\"Bed sincerity yet therefore forfeited his certainty neglected questions. Pursuit chamber as elderly amongst on. Distant however warrant farther to of. My justice wishing prudent waiting in be. Comparison age not pianoforte increasing delightful now. Ladies others the six desire age. \";s:22:\"slider_item_btn_text_1\";s:18:\"Explore Collection\";s:22:\"slider_item_btn_text_2\";s:8:\"Button 2\";s:22:\"slider_item_overlay_bg\";s:9:\"#3D423D40\";s:3:\"_id\";s:7:\"090270f\";s:20:\"slider_item_bg_image\";a:4:{s:3:\"url\";s:81:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/home1-2.jpg\";s:2:\"id\";i:84;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:17:\"slider_item_btn_2\";s:0:\"\";s:21:\"slider_item_btn_url_1\";a:4:{s:3:\"url\";s:59:\"https://wordpressdemo.subscriptionflow.com/shop-wooshop-v1/\";s:11:\"is_external\";s:0:\"\";s:8:\"nofollow\";s:0:\"\";s:17:\"custom_attributes\";s:0:\"\";}}i:1;a:10:{s:17:\"slider_item_title\";s:14:\"Endless Summer\";s:21:\"slider_item_sub_title\";s:25:\"Beige Summer Hot Dresses\";s:23:\"slider_item_description\";s:316:\"Slider 2 Description Text, Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur laoreet cursus volutpat. Aliquam sit amet ligula et justo tincidunt laoreet non vitae lorem. Ladies others the six desire age. Bred am soon park past read by lain. As excuse eldest no moment. An delight beloved up garrets.\";s:22:\"slider_item_btn_text_1\";s:12:\"Purchase Now\";s:22:\"slider_item_btn_text_2\";s:8:\"Button 2\";s:22:\"slider_item_overlay_bg\";s:9:\"#3D423D40\";s:3:\"_id\";s:7:\"56d5c9c\";s:20:\"slider_item_bg_image\";a:4:{s:3:\"url\";s:79:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-1.jpg\";s:2:\"id\";i:27;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:17:\"slider_item_btn_2\";s:0:\"\";s:21:\"slider_item_btn_url_1\";a:4:{s:3:\"url\";s:59:\"https://wordpressdemo.subscriptionflow.com/shop-wooshop-v1/\";s:11:\"is_external\";s:0:\"\";s:8:\"nofollow\";s:0:\"\";s:17:\"custom_attributes\";s:0:\"\";}}}s:13:\"slider_height\";a:3:{s:4:\"unit\";s:2:\"vh\";s:4:\"size\";i:90;s:5:\"sizes\";a:0:{}}s:17:\"slider_content_hr\";s:5:\"right\";s:20:\"slider_content_align\";s:5:\"right\";s:20:\"slider_content_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:877;s:5:\"sizes\";a:0:{}}s:22:\"slider_content_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"10\";s:5:\"right\";s:3:\"150\";s:6:\"bottom\";s:2:\"50\";s:4:\"left\";s:2:\"50\";s:8:\"isLinked\";b:0;}s:34:\"slider_title_typography_typography\";s:6:\"custom\";s:35:\"slider_title_typography_font_family\";s:7:\"Poppins\";s:33:\"slider_title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:35:\"slider_title_typography_font_weight\";s:3:\"400\";s:38:\"slider_title_typography_text_transform\";s:9:\"uppercase\";s:38:\"slider_sub_title_typography_typography\";s:6:\"custom\";s:39:\"slider_sub_title_typography_font_family\";s:13:\"Abril Fatface\";s:37:\"slider_sub_title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:95;s:5:\"sizes\";a:0:{}}s:39:\"slider_sub_title_typography_font_weight\";s:3:\"500\";s:40:\"slider_description_typography_typography\";s:6:\"custom\";s:41:\"slider_description_typography_font_family\";s:4:\"Lato\";s:39:\"slider_description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:41:\"slider_description_typography_font_weight\";s:3:\"400\";s:20:\"slider_nav_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:20:\"slider_height_tablet\";a:3:{s:4:\"unit\";s:2:\"vh\";s:4:\"size\";i:92;s:5:\"sizes\";a:0:{}}s:20:\"slider_height_mobile\";a:3:{s:4:\"unit\";s:2:\"vh\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:39:\"slider_sub_title_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1;s:5:\"sizes\";a:0:{}}s:25:\"btn_transition_duration_1\";d:0.5;s:27:\"btn_typography_1_typography\";s:6:\"custom\";s:28:\"btn_typography_1_font_family\";s:7:\"Poppins\";s:26:\"btn_typography_1_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:28:\"btn_typography_1_font_weight\";s:3:\"400\";s:19:\"btn_border_radius_1\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:24:\"slider_description_color\";s:7:\"#DDDDDD\";s:17:\"slider_nav_mobile\";s:0:\"\";s:29:\"slider_content_padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"50\";s:5:\"right\";s:2:\"80\";s:6:\"bottom\";s:2:\"50\";s:4:\"left\";s:2:\"80\";s:8:\"isLinked\";b:0;}s:29:\"slider_content_padding_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}s:40:\"slider_title_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:40:\"slider_title_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:44:\"slider_sub_title_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:85;s:5:\"sizes\";a:0:{}}s:44:\"slider_sub_title_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:50;s:5:\"sizes\";a:0:{}}s:46:\"slider_description_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:33:\"btn_typography_1_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:33:\"btn_typography_1_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:19:\"wpr-advanced-slider\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}i:1;a:5:{s:2:\"id\";s:7:\"bb0ced0\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:7:{s:9:\"structure\";s:2:\"50\";s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"a4ec657\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"c5ee97b\";}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:3:\"100\";s:5:\"right\";i:0;s:6:\"bottom\";s:2:\"50\";s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}s:13:\"content_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1600;s:5:\"sizes\";a:0:{}}s:3:\"gap\";s:5:\"wider\";s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"30\";s:5:\"right\";i:0;s:6:\"bottom\";s:1:\"0\";s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:5:{i:0;a:5:{s:2:\"id\";s:7:\"52460c6\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:3:{s:12:\"_column_size\";i:20;s:12:\"_inline_size\";N;s:16:\"content_position\";s:6:\"center\";}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"1dede38\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:4:{s:5:\"image\";a:4:{s:3:\"url\";s:80:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-7.png\";s:2:\"id\";i:443;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:5:\"width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:74;s:5:\"sizes\";a:0:{}}s:12:\"width_tablet\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:12:\"width_mobile\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:5:\"image\";}}s:7:\"isInner\";b:0;}i:1;a:5:{s:2:\"id\";s:7:\"0d8a748\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:3:{s:12:\"_column_size\";i:20;s:12:\"_inline_size\";N;s:16:\"content_position\";s:6:\"center\";}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"ed81539\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:4:{s:5:\"image\";a:4:{s:3:\"url\";s:80:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-4.png\";s:2:\"id\";i:439;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:5:\"width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:74;s:5:\"sizes\";a:0:{}}s:12:\"width_tablet\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:12:\"width_mobile\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:5:\"image\";}}s:7:\"isInner\";b:0;}i:2;a:5:{s:2:\"id\";s:7:\"10d00b0\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:3:{s:12:\"_column_size\";i:20;s:12:\"_inline_size\";N;s:16:\"content_position\";s:6:\"center\";}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"639dfd0\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:4:{s:5:\"image\";a:4:{s:3:\"url\";s:80:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-6.png\";s:2:\"id\";i:441;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:5:\"width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:74;s:5:\"sizes\";a:0:{}}s:12:\"width_tablet\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:12:\"width_mobile\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:5:\"image\";}}s:7:\"isInner\";b:0;}i:3;a:5:{s:2:\"id\";s:7:\"4f53fba\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:3:{s:12:\"_column_size\";i:20;s:12:\"_inline_size\";N;s:16:\"content_position\";s:6:\"center\";}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"ccd581c\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:4:{s:5:\"image\";a:4:{s:3:\"url\";s:80:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-3.png\";s:2:\"id\";i:438;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:5:\"width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:74;s:5:\"sizes\";a:0:{}}s:12:\"width_tablet\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:12:\"width_mobile\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:5:\"image\";}}s:7:\"isInner\";b:0;}i:4;a:5:{s:2:\"id\";s:7:\"89963b9\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:3:{s:12:\"_column_size\";i:20;s:12:\"_inline_size\";N;s:16:\"content_position\";s:6:\"center\";}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"653e193\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:4:{s:5:\"image\";a:4:{s:3:\"url\";s:80:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-5.png\";s:2:\"id\";i:440;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:5:\"width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:74;s:5:\"sizes\";a:0:{}}s:12:\"width_tablet\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:12:\"width_mobile\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:5:\"image\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}i:2;a:5:{s:2:\"id\";s:7:\"cc825fd\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:14:{s:6:\"height\";s:10:\"min-height\";s:13:\"custom_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:371;s:5:\"sizes\";a:0:{}}s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:4:{s:3:\"url\";s:80:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-28.jpg\";s:2:\"id\";i:1027;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:19:\"background_position\";s:13:\"center center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"cabb361\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"927a192\";}}s:29:\"background_overlay_background\";s:7:\"classic\";s:24:\"background_overlay_color\";s:9:\"#22272385\";s:26:\"background_overlay_opacity\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.73;s:5:\"sizes\";a:0:{}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:3:\"100\";s:5:\"right\";i:0;s:6:\"bottom\";s:1:\"0\";s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}s:20:\"custom_height_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:262;s:5:\"sizes\";a:0:{}}s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"30\";s:5:\"right\";i:0;s:6:\"bottom\";s:2:\"50\";s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"482ae82\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:2:{s:12:\"_column_size\";i:100;s:12:\"_inline_size\";N;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"6b0998c\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:10:{s:5:\"title\";s:17:\"Featured Products\";s:5:\"align\";s:6:\"center\";s:11:\"title_color\";s:7:\"#FFFFFF\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:22:\"typography_font_weight\";s:3:\"500\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:35;s:5:\"sizes\";a:0:{}}s:25:\"typography_text_transform\";s:9:\"uppercase\";s:7:\"_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"20\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b: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:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}i:3;a:5:{s:2:\"id\";s:7:\"a501e0c\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:14:{s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"ba6bbcc\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"abac5ca\";}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:3:\"-78\";s:5:\"right\";i:0;s:6:\"bottom\";s:3:\"100\";s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}s:24:\"background_overlay_image\";a:4:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:26:\"background_overlay_opacity\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.53;s:5:\"sizes\";a:0:{}}s:16:\"background_image\";a:4:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:19:\"background_position\";s:13:\"center center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";s:27:\"background_overlay_position\";s:13:\"center center\";s:25:\"background_overlay_repeat\";s:9:\"no-repeat\";s:23:\"background_overlay_size\";s:5:\"cover\";s:24:\"background_overlay_color\";s:7:\"#333C2C\";s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:4:\"-118\";s:5:\"right\";i:0;s:6:\"bottom\";s:1:\"0\";s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"a9e4f80\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:2:{s:12:\"_column_size\";i:100;s:12:\"_inline_size\";N;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"c977681\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:75:{s:20:\"query_not_found_text\";s:15:\"No Posts Found!\";s:14:\"layout_filters\";s:0:\"\";s:17:\"layout_pagination\";s:0:\"\";s:13:\"grid_elements\";a:3:{i:0;a:5:{s:3:\"_id\";s:7:\"e49138e\";s:15:\"element_tax_sep\";s:2:\", \";s:26:\"element_addcart_simple_txt\";s:11:\"Add to Cart\";s:27:\"element_addcart_grouped_txt\";s:14:\"Select Options\";s:28:\"element_addcart_variable_txt\";s:13:\"View Products\";}i:1;a:6:{s:14:\"element_select\";s:5:\"price\";s:3:\"_id\";s:7:\"d8ef0e7\";s:15:\"element_tax_sep\";s:2:\", \";s:26:\"element_addcart_simple_txt\";s:11:\"Add to Cart\";s:27:\"element_addcart_grouped_txt\";s:14:\"Select Options\";s:28:\"element_addcart_variable_txt\";s:13:\"View Products\";}i:2;a:6:{s:14:\"element_select\";s:11:\"add-to-cart\";s:3:\"_id\";s:7:\"33d399d\";s:15:\"element_tax_sep\";s:2:\", \";s:26:\"element_addcart_simple_txt\";s:11:\"Add to Cart\";s:27:\"element_addcart_grouped_txt\";s:14:\"Select Options\";s:28:\"element_addcart_variable_txt\";s:13:\"View Products\";}}s:16:\"filters_all_text\";s:3:\"All\";s:21:\"pagination_older_text\";s:11:\"Older Posts\";s:21:\"pagination_newer_text\";s:11:\"Newer Posts\";s:20:\"pagination_prev_text\";s:13:\"Previous Page\";s:20:\"pagination_next_text\";s:9:\"Next Page\";s:21:\"pagination_first_text\";s:10:\"First Page\";s:20:\"pagination_last_text\";s:9:\"Last Page\";s:25:\"pagination_load_more_text\";s:9:\"Load More\";s:22:\"pagination_finish_text\";s:15:\"End of Content.\";s:15:\"query_selection\";s:8:\"featured\";s:14:\"title_color_hr\";s:7:\"#333333\";s:25:\"title_transition_duration\";d:0.5;s:27:\"title_typography_typography\";s:6:\"custom\";s:28:\"title_typography_font_family\";s:7:\"Poppins\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";s:3:\"400\";s:19:\"categories_color_hr\";s:7:\"#CD98CC\";s:32:\"categories_typography_typography\";s:6:\"custom\";s:33:\"categories_typography_font_family\";s:7:\"Poppins\";s:31:\"categories_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:33:\"categories_typography_font_weight\";s:3:\"400\";s:26:\"product_status_os_bg_color\";s:7:\"#FF4F40\";s:36:\"product_status_typography_typography\";s:6:\"custom\";s:37:\"product_status_typography_font_family\";s:7:\"Poppins\";s:35:\"product_status_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:37:\"product_status_typography_font_weight\";s:3:\"400\";s:40:\"product_status_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.2;s:5:\"sizes\";a:0:{}}s:22:\"product_status_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"15\";s:5:\"right\";s:2:\"10\";s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"10\";s:8:\"isLinked\";b:0;}s:21:\"product_status_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"30\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"30\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:1;}s:19:\"product_price_color\";s:7:\"#FF4F40\";s:23:\"product_price_old_color\";s:7:\"#FF7E73\";s:35:\"product_price_typography_typography\";s:6:\"custom\";s:36:\"product_price_typography_font_family\";s:7:\"Poppins\";s:34:\"product_price_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:19;s:5:\"sizes\";a:0:{}}s:36:\"product_price_typography_font_weight\";s:3:\"400\";s:24:\"add_to_cart_border_color\";s:7:\"#FF4F40\";s:20:\"add_to_cart_color_hr\";s:7:\"#FFFFFF\";s:23:\"add_to_cart_bg_color_hr\";s:7:\"#FF4F40\";s:27:\"add_to_cart_border_color_hr\";s:7:\"#FF4F40\";s:31:\"add_to_cart_transition_duration\";d:0.3;s:33:\"add_to_cart_typography_typography\";s:6:\"custom\";s:34:\"add_to_cart_typography_font_family\";s:7:\"Poppins\";s:32:\"add_to_cart_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:34:\"add_to_cart_typography_font_weight\";s:3:\"400\";s:24:\"add_to_cart_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:19:\"add_to_cart_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"8\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:1:\"8\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:0;}s:18:\"add_to_cart_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:20:\"product_price_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"5\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:18:\"cross_sell_heading\";s:27:\"You may be interested in...\";s:14:\"upsell_heading\";s:20:\"You may also like...\";s:12:\"sort_heading\";s:4:\"Shop\";s:22:\"sort_and_results_count\";s:0:\"\";s:20:\"product_rating_color\";s:7:\"#FF4F40\";s:26:\"product_rating_score_color\";s:7:\"#FF4F40\";s:26:\"product_status_ft_bg_color\";s:7:\"#FF4F40\";s:16:\"sort_title_color\";s:7:\"#FFFFFF\";s:13:\"results_color\";s:7:\"#FFFFFF\";s:13:\"sorting_color\";s:7:\"#2D2D2D\";s:31:\"lightbox_typography_font_family\";s:6:\"Roboto\";s:29:\"lightbox_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:88;s:5:\"sizes\";a:0:{}}s:31:\"lightbox_typography_font_weight\";s:3:\"400\";s:21:\"layout_columns_tablet\";s:1:\"3\";s:29:\"sort_and_results_count_tablet\";s:0:\"\";s:29:\"sort_and_results_count_mobile\";s:0:\"\";s:21:\"layout_filters_tablet\";s:0:\"\";s:21:\"layout_filters_mobile\";s:0:\"\";s:33:\"title_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:41:\"product_price_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:39:\"add_to_cart_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:26:\"add_to_cart_padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"7\";s:5:\"right\";s:2:\"25\";s:6:\"bottom\";s:1:\"7\";s:4:\"left\";s:2:\"25\";s:8:\"isLinked\";b:0;}s:28:\"grid_linked_products_heading\";s:27:\"You may be interested in...\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:12:\"wpr-woo-grid\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}i:4;a:5:{s:2:\"id\";s:7:\"2f899db\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:5:{s:13:\"content_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1600;s:5:\"sizes\";a:0:{}}s:9:\"structure\";s:2:\"20\";s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"1e40c7c\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"7e88949\";}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"50\";s:5:\"right\";i:0;s:6:\"bottom\";s:2:\"50\";s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:2:{i:0;a:5:{s:2:\"id\";s:7:\"aed3399\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:3:{s:12:\"_column_size\";i:50;s:12:\"_inline_size\";N;s:19:\"_inline_size_tablet\";i:100;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"6d8f5f6\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:41:{s:5:\"image\";a:4:{s:3:\"url\";s:81:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/promo-1.jpg\";s:2:\"id\";i:264;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:13:\"content_title\";s:18:\"Endless <br>Summer\";s:16:\"content_btn_text\";s:10:\"Click here\";s:13:\"overlay_color\";s:9:\"#3D423D40\";s:19:\"overlay_hover_color\";s:9:\"#3D423D69\";s:19:\"content_description\";s:0:\"\";s:17:\"content_link_type\";s:3:\"box\";s:16:\"border_animation\";s:4:\"jazz\";s:22:\"border_animation_color\";s:9:\"#FFFFFF24\";s:22:\"border_animation_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:18:\"content_min_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:412;s:5:\"sizes\";a:0:{}}s:15:\"content_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"30\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"30\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:0;}s:19:\"content_vr_position\";s:6:\"bottom\";s:13:\"content_align\";s:4:\"left\";s:21:\"content_icon_distance\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:35:\"content_title_typography_typography\";s:6:\"custom\";s:36:\"content_title_typography_font_family\";s:7:\"Poppins\";s:34:\"content_title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:65;s:5:\"sizes\";a:0:{}}s:36:\"content_title_typography_font_weight\";s:3:\"900\";s:39:\"content_title_typography_text_transform\";s:9:\"uppercase\";s:36:\"content_title_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.9;s:5:\"sizes\";a:0:{}}s:22:\"content_title_distance\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:41:\"content_description_typography_typography\";s:6:\"custom\";s:42:\"content_description_typography_font_family\";s:4:\"Lato\";s:40:\"content_description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:42:\"content_description_typography_font_weight\";s:3:\"400\";s:28:\"content_description_distance\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:10;s:5:\"sizes\";a:0:{}}s:25:\"btn_typography_typography\";s:6:\"custom\";s:26:\"btn_typography_font_family\";s:7:\"Poppins\";s:24:\"btn_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:26:\"btn_typography_font_weight\";s:3:\"400\";s:29:\"btn_typography_text_transform\";s:9:\"uppercase\";s:11:\"btn_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"9\";s:5:\"right\";s:2:\"35\";s:6:\"bottom\";s:1:\"9\";s:4:\"left\";s:2:\"35\";s:8:\"isLinked\";b:0;}s:16:\"btn_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:17:\"btn_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:25:\"content_min_height_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:290;s:5:\"sizes\";a:0:{}}s:25:\"content_min_height_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:230;s:5:\"sizes\";a:0:{}}s:41:\"content_title_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:55;s:5:\"sizes\";a:0:{}}s:41:\"content_title_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:35;s:5:\"sizes\";a:0:{}}s:43:\"content_title_typography_line_height_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:12:\"content_link\";a:4:{s:3:\"url\";s:59:\"https://wordpressdemo.subscriptionflow.com/shop-wooshop-v1/\";s:11:\"is_external\";s:0:\"\";s:8:\"nofollow\";s:0:\"\";s:17:\"custom_attributes\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:13:\"wpr-promo-box\";}}s:7:\"isInner\";b:0;}i:1;a:5:{s:2:\"id\";s:7:\"0887efb\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:3:{s:12:\"_column_size\";i:50;s:12:\"_inline_size\";N;s:19:\"_inline_size_tablet\";i:100;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"f40f770\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:37:{s:5:\"image\";a:4:{s:3:\"url\";s:79:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-2.jpg\";s:2:\"id\";i:34;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:13:\"content_title\";s:34:\"APP EXCLUSIVE<br> EXTRA 10% OFF!*\";s:16:\"content_btn_text\";s:10:\"Click here\";s:13:\"overlay_color\";s:9:\"#3D423D40\";s:19:\"overlay_hover_color\";s:9:\"#3D423D69\";s:19:\"content_description\";s:56:\"<p>*Excludes Megan Box, beauty & selected lines.</p>\";s:17:\"content_link_type\";s:3:\"box\";s:22:\"border_animation_color\";s:9:\"#FFFFFF24\";s:22:\"border_animation_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:18:\"content_min_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:412;s:5:\"sizes\";a:0:{}}s:15:\"content_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"30\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"30\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:0;}s:19:\"content_vr_position\";s:3:\"top\";s:13:\"content_align\";s:4:\"left\";s:21:\"content_icon_distance\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:35:\"content_title_typography_typography\";s:6:\"custom\";s:36:\"content_title_typography_font_family\";s:13:\"Abril Fatface\";s:34:\"content_title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:34;s:5:\"sizes\";a:0:{}}s:36:\"content_title_typography_font_weight\";s:3:\"500\";s:22:\"content_title_distance\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:41:\"content_description_typography_typography\";s:6:\"custom\";s:42:\"content_description_typography_font_family\";s:4:\"Lato\";s:40:\"content_description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:42:\"content_description_typography_font_weight\";s:3:\"400\";s:28:\"content_description_distance\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:25:\"btn_typography_typography\";s:6:\"custom\";s:26:\"btn_typography_font_family\";s:7:\"Poppins\";s:24:\"btn_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:26:\"btn_typography_font_weight\";s:3:\"400\";s:29:\"btn_typography_text_transform\";s:9:\"uppercase\";s:11:\"btn_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"9\";s:5:\"right\";s:2:\"35\";s:6:\"bottom\";s:1:\"9\";s:4:\"left\";s:2:\"35\";s:8:\"isLinked\";b:0;}s:16:\"btn_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:17:\"btn_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:25:\"content_min_height_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:290;s:5:\"sizes\";a:0:{}}s:25:\"content_min_height_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:230;s:5:\"sizes\";a:0:{}}s:20:\"content_align_mobile\";s:4:\"left\";s:41:\"content_title_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}s:12:\"content_link\";a:4:{s:3:\"url\";s:59:\"https://wordpressdemo.subscriptionflow.com/shop-wooshop-v1/\";s:11:\"is_external\";s:0:\"\";s:8:\"nofollow\";s:0:\"\";s:17:\"custom_attributes\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:13:\"wpr-promo-box\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}i:5;a:5:{s:2:\"id\";s:7:\"4069cc7\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:3:{s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"ba6bbcc\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"abac5ca\";}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:3:\"100\";s:5:\"right\";i:0;s:6:\"bottom\";s:3:\"100\";s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"b849f95\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:2:{s:12:\"_column_size\";i:100;s:12:\"_inline_size\";N;}s:8:\"elements\";a:2:{i:0;a:5:{s:2:\"id\";s:7:\"df56f06\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:10:{s:5:\"title\";s:13:\"Sale Products\";s:5:\"align\";s:6:\"center\";s:11:\"title_color\";s:7:\"#222222\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:22:\"typography_font_weight\";s:3:\"500\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:35;s:5:\"sizes\";a:0:{}}s:25:\"typography_text_transform\";s:9:\"uppercase\";s:7:\"_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"20\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b: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:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}i:1;a:5:{s:2:\"id\";s:7:\"ec00d4f\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:78:{s:20:\"query_not_found_text\";s:15:\"No Posts Found!\";s:14:\"layout_filters\";s:0:\"\";s:17:\"layout_pagination\";s:0:\"\";s:13:\"grid_elements\";a:3:{i:0;a:5:{s:3:\"_id\";s:7:\"e49138e\";s:15:\"element_tax_sep\";s:2:\", \";s:26:\"element_addcart_simple_txt\";s:11:\"Add to Cart\";s:27:\"element_addcart_grouped_txt\";s:14:\"Select Options\";s:28:\"element_addcart_variable_txt\";s:13:\"View Products\";}i:1;a:6:{s:14:\"element_select\";s:5:\"price\";s:3:\"_id\";s:7:\"d8ef0e7\";s:15:\"element_tax_sep\";s:2:\", \";s:26:\"element_addcart_simple_txt\";s:11:\"Add to Cart\";s:27:\"element_addcart_grouped_txt\";s:14:\"Select Options\";s:28:\"element_addcart_variable_txt\";s:13:\"View Products\";}i:2;a:6:{s:14:\"element_select\";s:11:\"add-to-cart\";s:3:\"_id\";s:7:\"33d399d\";s:15:\"element_tax_sep\";s:2:\", \";s:26:\"element_addcart_simple_txt\";s:11:\"Add to Cart\";s:27:\"element_addcart_grouped_txt\";s:14:\"Select Options\";s:28:\"element_addcart_variable_txt\";s:13:\"View Products\";}}s:16:\"filters_all_text\";s:3:\"All\";s:21:\"pagination_older_text\";s:11:\"Older Posts\";s:21:\"pagination_newer_text\";s:11:\"Newer Posts\";s:20:\"pagination_prev_text\";s:13:\"Previous Page\";s:20:\"pagination_next_text\";s:9:\"Next Page\";s:21:\"pagination_first_text\";s:10:\"First Page\";s:20:\"pagination_last_text\";s:9:\"Last Page\";s:25:\"pagination_load_more_text\";s:9:\"Load More\";s:22:\"pagination_finish_text\";s:15:\"End of Content.\";s:15:\"query_selection\";s:6:\"manual\";s:20:\"query_posts_per_page\";i:6;s:16:\"layout_gutter_vr\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:14:\"title_color_hr\";s:7:\"#333333\";s:25:\"title_transition_duration\";d:0.5;s:27:\"title_typography_typography\";s:6:\"custom\";s:28:\"title_typography_font_family\";s:7:\"Poppins\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";s:3:\"400\";s:19:\"categories_color_hr\";s:7:\"#CD98CC\";s:32:\"categories_typography_typography\";s:6:\"custom\";s:33:\"categories_typography_font_family\";s:7:\"Poppins\";s:31:\"categories_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:33:\"categories_typography_font_weight\";s:3:\"400\";s:26:\"product_status_os_bg_color\";s:7:\"#FF4F40\";s:36:\"product_status_typography_typography\";s:6:\"custom\";s:37:\"product_status_typography_font_family\";s:7:\"Poppins\";s:35:\"product_status_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:37:\"product_status_typography_font_weight\";s:3:\"400\";s:40:\"product_status_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.2;s:5:\"sizes\";a:0:{}}s:22:\"product_status_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"15\";s:5:\"right\";s:2:\"10\";s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"10\";s:8:\"isLinked\";b:0;}s:21:\"product_status_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"30\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"30\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:1;}s:19:\"product_price_color\";s:7:\"#FF4F40\";s:23:\"product_price_old_color\";s:7:\"#FF7E73\";s:35:\"product_price_typography_typography\";s:6:\"custom\";s:36:\"product_price_typography_font_family\";s:7:\"Poppins\";s:34:\"product_price_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:19;s:5:\"sizes\";a:0:{}}s:36:\"product_price_typography_font_weight\";s:3:\"400\";s:24:\"add_to_cart_border_color\";s:7:\"#FF4F40\";s:20:\"add_to_cart_color_hr\";s:7:\"#FFFFFF\";s:23:\"add_to_cart_bg_color_hr\";s:7:\"#FF4F40\";s:27:\"add_to_cart_border_color_hr\";s:7:\"#FF4F40\";s:31:\"add_to_cart_transition_duration\";d:0.3;s:33:\"add_to_cart_typography_typography\";s:6:\"custom\";s:34:\"add_to_cart_typography_font_family\";s:7:\"Poppins\";s:32:\"add_to_cart_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:34:\"add_to_cart_typography_font_weight\";s:3:\"400\";s:24:\"add_to_cart_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:19:\"add_to_cart_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"8\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:1:\"8\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:0;}s:18:\"add_to_cart_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:20:\"product_price_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"5\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:18:\"cross_sell_heading\";s:27:\"You may be interested in...\";s:14:\"upsell_heading\";s:20:\"You may also like...\";s:12:\"sort_heading\";s:4:\"Shop\";s:22:\"sort_and_results_count\";s:0:\"\";s:20:\"product_rating_color\";s:7:\"#FF4F40\";s:26:\"product_rating_score_color\";s:7:\"#FF4F40\";s:26:\"product_status_ft_bg_color\";s:7:\"#FF4F40\";s:21:\"layout_columns_tablet\";s:1:\"2\";s:29:\"sort_and_results_count_tablet\";s:0:\"\";s:29:\"sort_and_results_count_mobile\";s:0:\"\";s:21:\"layout_filters_tablet\";s:0:\"\";s:21:\"layout_filters_mobile\";s:0:\"\";s:33:\"title_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:41:\"product_price_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:39:\"add_to_cart_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:26:\"add_to_cart_padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"7\";s:5:\"right\";s:2:\"25\";s:6:\"bottom\";s:1:\"7\";s:4:\"left\";s:2:\"25\";s:8:\"isLinked\";b:0;}s:31:\"lightbox_typography_font_family\";s:6:\"Roboto\";s:29:\"lightbox_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:88;s:5:\"sizes\";a:0:{}}s:31:\"lightbox_typography_font_weight\";s:3:\"400\";s:16:\"sort_title_color\";s:7:\"#FFFFFF\";s:13:\"results_color\";s:7:\"#FFFFFF\";s:13:\"sorting_color\";s:7:\"#2D2D2D\";s:28:\"grid_linked_products_heading\";s:27:\"You may be interested in...\";s:21:\"query_manual_products\";a:6:{i:0;s:2:\"53\";i:1;s:2:\"83\";i:2;s:3:\"364\";i:3;s:3:\"404\";i:4;s:3:\"407\";i:5;s:3:\"409\";}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:12:\"wpr-woo-grid\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}i:6;a:5:{s:2:\"id\";s:7:\"e245ff9\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:7:{s:6:\"layout\";s:10:\"full_width\";s:3:\"gap\";s:2:\"no\";s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"8edda02\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"2c06388\";}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";i:0;s:6:\"bottom\";s:0:\"\";s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:29:\"background_overlay_background\";s:7:\"classic\";s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"50\";s:5:\"right\";i:0;s:6:\"bottom\";s:2:\"50\";s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"4b3567d\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:2:{s:12:\"_column_size\";i:100;s:12:\"_inline_size\";N;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"46d16c8\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:39:{s:5:\"image\";a:4:{s:3:\"url\";s:81:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/promo-1.jpg\";s:2:\"id\";i:264;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:13:\"content_title\";s:36:\"UP TO 70% OFF!* + <br>FREE DELIVERY!\";s:16:\"content_btn_text\";s:11:\"Join Us Now\";s:13:\"overlay_color\";s:9:\"#3D423D40\";s:19:\"overlay_hover_color\";s:9:\"#3D423D69\";s:18:\"content_min_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:488;s:5:\"sizes\";a:0:{}}s:16:\"border_animation\";s:4:\"none\";s:15:\"content_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"30\";s:5:\"right\";s:3:\"100\";s:6:\"bottom\";s:2:\"30\";s:4:\"left\";s:3:\"100\";s:8:\"isLinked\";b:0;}s:13:\"content_align\";s:4:\"left\";s:35:\"content_title_typography_typography\";s:6:\"custom\";s:36:\"content_title_typography_font_family\";s:13:\"Abril Fatface\";s:34:\"content_title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:70;s:5:\"sizes\";a:0:{}}s:36:\"content_title_typography_font_weight\";s:3:\"500\";s:22:\"content_title_distance\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:41:\"content_description_typography_typography\";s:6:\"custom\";s:42:\"content_description_typography_font_family\";s:4:\"Lato\";s:40:\"content_description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:42:\"content_description_typography_font_weight\";s:3:\"400\";s:28:\"content_description_distance\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:22;s:5:\"sizes\";a:0:{}}s:19:\"content_description\";s:144:\"<p>Answer misery adieus add wooded how nay men before though. <br />Pretended belonging contented mrs suffering favourite you the continual.</p>\";s:25:\"btn_typography_typography\";s:6:\"custom\";s:26:\"btn_typography_font_family\";s:7:\"Poppins\";s:24:\"btn_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:26:\"btn_typography_font_weight\";s:3:\"400\";s:29:\"btn_typography_text_transform\";s:9:\"uppercase\";s:11:\"btn_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"9\";s:5:\"right\";s:2:\"35\";s:6:\"bottom\";s:1:\"9\";s:4:\"left\";s:2:\"35\";s:8:\"isLinked\";b:0;}s:16:\"btn_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:17:\"btn_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:25:\"content_min_height_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:380;s:5:\"sizes\";a:0:{}}s:25:\"content_min_height_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:323;s:5:\"sizes\";a:0:{}}s:22:\"content_padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"30\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"30\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:1;}s:41:\"content_title_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:45;s:5:\"sizes\";a:0:{}}s:41:\"content_title_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}s:47:\"content_description_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:35:\"content_description_distance_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:31:\"btn_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:31:\"btn_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:18:\"btn_padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"8\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:1:\"8\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:0;}s:12:\"content_link\";a:4:{s:3:\"url\";s:35:\"https://royal-elementor-addons.com/\";s:11:\"is_external\";s:0:\"\";s:8:\"nofollow\";s:0:\"\";s:17:\"custom_attributes\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:13:\"wpr-promo-box\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}i:7;a:5:{s:2:\"id\";s:7:\"dcd45f0\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:7:{s:9:\"structure\";s:2:\"40\";s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"a4ec657\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"c5ee97b\";}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";i:0;s:6:\"bottom\";s:0:\"\";s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:6:\"height\";s:10:\"min-height\";s:13:\"custom_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:355;s:5:\"sizes\";a:0:{}}s:20:\"custom_height_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:195;s:5:\"sizes\";a:0:{}}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:4:{i:0;a:5:{s:2:\"id\";s:7:\"324290f\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:4:{s:12:\"_column_size\";i:25;s:12:\"_inline_size\";N;s:16:\"content_position\";s:6:\"center\";s:19:\"_inline_size_tablet\";i:50;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"be768ff\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:20:{s:5:\"image\";a:4:{s:3:\"url\";s:80:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/icon-2.png\";s:2:\"id\";i:251;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:10:\"title_text\";s:13:\"Free Shipping\";s:16:\"description_text\";s:16:\"Orders Over $500\";s:8:\"position\";s:4:\"left\";s:10:\"image_size\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:35;s:5:\"sizes\";a:0:{}}s:13:\"image_opacity\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.54;s:5:\"sizes\";a:0:{}}s:18:\"title_bottom_space\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:11:\"title_color\";s:7:\"#222222\";s:27:\"title_typography_typography\";s:6:\"custom\";s:28:\"title_typography_font_family\";s:7:\"Poppins\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:19;s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";s:3:\"600\";s:33:\"description_typography_typography\";s:6:\"custom\";s:34:\"description_typography_font_family\";s:4:\"Lato\";s:32:\"description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:34:\"description_typography_font_weight\";s:3:\"400\";s:17:\"description_color\";s:7:\"#777777\";s:17:\"image_size_tablet\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:23;s:5:\"sizes\";a:0:{}}s:33:\"title_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:33:\"title_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:9:\"image-box\";}}s:7:\"isInner\";b:0;}i:1;a:5:{s:2:\"id\";s:7:\"128857f\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:4:{s:12:\"_column_size\";i:25;s:12:\"_inline_size\";N;s:16:\"content_position\";s:6:\"center\";s:19:\"_inline_size_tablet\";i:50;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"8320b30\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:20:{s:5:\"image\";a:4:{s:3:\"url\";s:128:\"https://nicktesting.kinsta.cloud/shopdiko1/wp-content/uploads/2022/06/4544829_business_comerce_delivery_mastercard_shop_icon.png\";s:2:\"id\";i:248;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:10:\"title_text\";s:13:\"Quick Payment\";s:16:\"description_text\";s:19:\"100% Secure Payment\";s:8:\"position\";s:4:\"left\";s:10:\"image_size\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:35;s:5:\"sizes\";a:0:{}}s:13:\"image_opacity\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.54;s:5:\"sizes\";a:0:{}}s:18:\"title_bottom_space\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:11:\"title_color\";s:7:\"#222222\";s:27:\"title_typography_typography\";s:6:\"custom\";s:28:\"title_typography_font_family\";s:7:\"Poppins\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:19;s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";s:3:\"600\";s:33:\"description_typography_typography\";s:6:\"custom\";s:34:\"description_typography_font_family\";s:4:\"Lato\";s:32:\"description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:34:\"description_typography_font_weight\";s:3:\"400\";s:17:\"description_color\";s:7:\"#777777\";s:17:\"image_size_tablet\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:23;s:5:\"sizes\";a:0:{}}s:33:\"title_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:33:\"title_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:9:\"image-box\";}}s:7:\"isInner\";b:0;}i:2;a:5:{s:2:\"id\";s:7:\"61ecae8\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:4:{s:12:\"_column_size\";i:25;s:12:\"_inline_size\";N;s:16:\"content_position\";s:6:\"center\";s:19:\"_inline_size_tablet\";i:50;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"c5418a2\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:20:{s:5:\"image\";a:4:{s:3:\"url\";s:130:\"https://nicktesting.kinsta.cloud/shopdiko1/wp-content/uploads/2022/06/4544844_business_comerce_consultation_delivery_shop_icon.png\";s:2:\"id\";i:249;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:10:\"title_text\";s:12:\"24/7 Support\";s:16:\"description_text\";s:13:\"Ready For You\";s:8:\"position\";s:4:\"left\";s:10:\"image_size\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:35;s:5:\"sizes\";a:0:{}}s:13:\"image_opacity\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.54;s:5:\"sizes\";a:0:{}}s:18:\"title_bottom_space\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:11:\"title_color\";s:7:\"#222222\";s:27:\"title_typography_typography\";s:6:\"custom\";s:28:\"title_typography_font_family\";s:7:\"Poppins\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:19;s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";s:3:\"600\";s:33:\"description_typography_typography\";s:6:\"custom\";s:34:\"description_typography_font_family\";s:4:\"Lato\";s:32:\"description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:34:\"description_typography_font_weight\";s:3:\"400\";s:17:\"description_color\";s:7:\"#777777\";s:17:\"image_size_tablet\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:23;s:5:\"sizes\";a:0:{}}s:33:\"title_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:33:\"title_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:9:\"image-box\";}}s:7:\"isInner\";b:0;}i:3;a:5:{s:2:\"id\";s:7:\"acab77b\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:4:{s:12:\"_column_size\";i:25;s:12:\"_inline_size\";N;s:16:\"content_position\";s:6:\"center\";s:19:\"_inline_size_tablet\";i:50;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"151e649\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:20:{s:5:\"image\";a:4:{s:3:\"url\";s:123:\"https://nicktesting.kinsta.cloud/shopdiko1/wp-content/uploads/2022/06/4544846_business_comerce_delivery_money_shop_icon.png\";s:2:\"id\";i:250;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:10:\"title_text\";s:12:\"Money Return\";s:16:\"description_text\";s:17:\"Back Under 7 Days\";s:8:\"position\";s:4:\"left\";s:10:\"image_size\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:35;s:5:\"sizes\";a:0:{}}s:13:\"image_opacity\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.54;s:5:\"sizes\";a:0:{}}s:18:\"title_bottom_space\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:11:\"title_color\";s:7:\"#222222\";s:27:\"title_typography_typography\";s:6:\"custom\";s:28:\"title_typography_font_family\";s:7:\"Poppins\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:19;s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";s:3:\"600\";s:33:\"description_typography_typography\";s:6:\"custom\";s:34:\"description_typography_font_family\";s:4:\"Lato\";s:32:\"description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:34:\"description_typography_font_weight\";s:3:\"400\";s:17:\"description_color\";s:7:\"#777777\";s:17:\"image_size_tablet\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:23;s:5:\"sizes\";a:0:{}}s:33:\"title_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:33:\"title_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:9:\"image-box\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}i:8;a:5:{s:2:\"id\";s:7:\"ac9ee83\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:5:{s:13:\"content_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:902;s:5:\"sizes\";a:0:{}}s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"d992c98\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"e6ecbb7\";}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";i:0;s:6:\"bottom\";s:3:\"100\";s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}s:21:\"background_background\";s:7:\"classic\";}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"adf57eb\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:12:{s:12:\"_column_size\";i:100;s:12:\"_inline_size\";N;s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:4:{s:3:\"url\";s:80:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/07/pic-38.jpg\";s:2:\"id\";i:1741;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:19:\"background_position\";s:13:\"center center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";s:29:\"background_overlay_background\";s:7:\"classic\";s:24:\"background_overlay_color\";s:7:\"#383838\";s:13:\"border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"10\";s:5:\"right\";s:2:\"10\";s:6:\"bottom\";s:2:\"10\";s:4:\"left\";s:2:\"10\";s:8:\"isLinked\";b:1;}s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"50\";s:5:\"right\";s:2:\"50\";s:6:\"bottom\";s:2:\"50\";s:4:\"left\";s:2:\"50\";s:8:\"isLinked\";b:0;}s:14:\"padding_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"25\";s:5:\"right\";s:2:\"25\";s:6:\"bottom\";s:2:\"25\";s:4:\"left\";s:2:\"25\";s:8:\"isLinked\";b:1;}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"d2db07a\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:2:{s:13:\"content_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:540;s:5:\"sizes\";a:0:{}}s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"a00e366\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"07a7e1e\";}}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"455b607\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:2:{s:12:\"_column_size\";i:100;s:12:\"_inline_size\";N;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"70d0b7c\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:51:{s:16:\"show_form_header\";s:3:\"yes\";s:10:\"form_title\";s:17:\"GET DISCOUNT INFO\";s:16:\"form_description\";s:172:\"Detract yet delight written farther his general. If in so bred at dare rose lose good. Feel and make two real miss use easy. Celebrated delightful an especially increasing.\";s:9:\"form_icon\";a:2:{s:5:\"value\";s:0:\"\";s:7:\"library\";s:0:\"\";}s:11:\"email_label\";s:0:\"\";s:17:\"email_placeholder\";s:15:\"sample@mail.com\";s:18:\"subscribe_btn_text\";s:9:\"Subscribe\";s:29:\"subscribe_button_loading_text\";s:14:\"Subscribing...\";s:15:\"success_message\";s:38:\"You have been successfully Subscribed!\";s:13:\"error_message\";s:44:\"Ops! Something went wrong, please try again.\";s:18:\"header_title_color\";s:7:\"#FFFFFF\";s:34:\"header_title_typography_typography\";s:6:\"custom\";s:35:\"header_title_typography_font_family\";s:7:\"Poppins\";s:33:\"header_title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}s:35:\"header_title_typography_font_weight\";s:3:\"400\";s:24:\"header_description_color\";s:7:\"#E0E0E0\";s:40:\"header_description_typography_typography\";s:6:\"custom\";s:41:\"header_description_typography_font_family\";s:4:\"Lato\";s:39:\"header_description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:41:\"header_description_typography_font_weight\";s:3:\"400\";s:20:\"header_desc_distance\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:43;s:5:\"sizes\";a:0:{}}s:25:\"input_transition_duration\";d:0.5;s:27:\"input_typography_typography\";s:6:\"custom\";s:28:\"input_typography_font_family\";s:4:\"Lato\";s:26:\"input_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:28:\"input_typography_font_weight\";s:3:\"400\";s:12:\"input_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:13:\"input_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:18:\"input_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:12:\"input_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:1;}s:33:\"subscribe_btn_bg_color_background\";s:7:\"classic\";s:28:\"subscribe_btn_bg_color_color\";s:7:\"#FF4F40\";s:33:\"subscribe_btn_transition_duration\";d:0.5;s:35:\"subscribe_btn_typography_typography\";s:6:\"custom\";s:36:\"subscribe_btn_typography_font_family\";s:7:\"Poppins\";s:34:\"subscribe_btn_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:36:\"subscribe_btn_typography_font_weight\";s:3:\"400\";s:19:\"subscribe_btn_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:145;s:5:\"sizes\";a:0:{}}s:20:\"subscribe_btn_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:20:\"subscribe_btn_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:1;}s:12:\"labels_color\";s:7:\"#777777\";s:40:\"header_title_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}s:33:\"input_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:41:\"subscribe_btn_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:21:\"success_message_color\";s:7:\"#8EC5A6\";s:19:\"error_message_color\";s:7:\"#FF4F40\";s:16:\"message_color_bg\";s:9:\"#FFFFFF00\";s:29:\"message_typography_typography\";s:6:\"custom\";s:30:\"message_typography_font_family\";s:7:\"Poppins\";s:28:\"message_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:30:\"message_typography_font_weight\";s:3:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:13:\"wpr-mailchimp\";}}s:7:\"isInner\";b:1;}}s:7:\"isInner\";b:1;}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}}\";'),(900,2091,'_elementor_page_assets','a:0:{}'),(901,2091,'_elementor_page_settings',''),(903,2092,'_elementor_edit_mode','builder'),(904,2092,'_elementor_template_type','wp-page'),(905,2092,'_elementor_version','3.6.8'),(906,2092,'_wp_page_template','elementor_canvas'),(907,2092,'_elementor_data','[{\"id\":\"638551d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"10f834f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"e37e7f2\"}],\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0},\"elements\":[{\"id\":\"a808755\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4069cc7\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"b849f95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"df56f06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sale Products\",\"align\":\"center\",\"title_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec00d4f\",\"elType\":\"widget\",\"settings\":{\"query_not_found_text\":\"No Posts Found!\",\"layout_filters\":\"\",\"layout_pagination\":\"\",\"grid_elements\":[{\"_id\":\"e49138e\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"d8ef0e7\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"add-to-cart\",\"_id\":\"33d399d\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\",\"query_selection\":\"manual\",\"query_posts_per_page\":6,\"layout_gutter_vr\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color_hr\":\"#333333\",\"title_transition_duration\":0.5,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"categories_color_hr\":\"#CD98CC\",\"categories_typography_typography\":\"custom\",\"categories_typography_font_family\":\"Poppins\",\"categories_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"categories_typography_font_weight\":\"400\",\"product_status_os_bg_color\":\"#FF4F40\",\"product_status_typography_typography\":\"custom\",\"product_status_typography_font_family\":\"Poppins\",\"product_status_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"product_status_typography_font_weight\":\"400\",\"product_status_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"product_status_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"product_status_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"product_price_color\":\"#FF4F40\",\"product_price_old_color\":\"#FF7E73\",\"product_price_typography_typography\":\"custom\",\"product_price_typography_font_family\":\"Poppins\",\"product_price_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"product_price_typography_font_weight\":\"400\",\"add_to_cart_border_color\":\"#FF4F40\",\"add_to_cart_color_hr\":\"#FFFFFF\",\"add_to_cart_bg_color_hr\":\"#FF4F40\",\"add_to_cart_border_color_hr\":\"#FF4F40\",\"add_to_cart_transition_duration\":0.3,\"add_to_cart_typography_typography\":\"custom\",\"add_to_cart_typography_font_family\":\"Poppins\",\"add_to_cart_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"add_to_cart_typography_font_weight\":\"400\",\"add_to_cart_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"add_to_cart_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"30\",\"bottom\":\"8\",\"left\":\"30\",\"isLinked\":false},\"add_to_cart_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"product_price_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"cross_sell_heading\":\"You may be interested in...\",\"upsell_heading\":\"You may also like...\",\"sort_heading\":\"Shop\",\"sort_and_results_count\":\"\",\"product_rating_color\":\"#FF4F40\",\"product_rating_score_color\":\"#FF4F40\",\"product_status_ft_bg_color\":\"#FF4F40\",\"layout_columns_tablet\":\"2\",\"sort_and_results_count_tablet\":\"\",\"sort_and_results_count_mobile\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"product_price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"add_to_cart_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"add_to_cart_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"25\",\"bottom\":\"7\",\"left\":\"25\",\"isLinked\":false},\"lightbox_typography_font_family\":\"Roboto\",\"lightbox_typography_font_size\":{\"unit\":\"px\",\"size\":88,\"sizes\":[]},\"lightbox_typography_font_weight\":\"400\",\"sort_title_color\":\"#FFFFFF\",\"results_color\":\"#FFFFFF\",\"sorting_color\":\"#2D2D2D\",\"grid_linked_products_heading\":\"You may be interested in...\",\"query_manual_products\":[\"53\",\"83\",\"364\",\"404\",\"407\",\"409\"]},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(908,2092,'_elementor_page_assets','a:0:{}'),(911,340,'_edit_lock','1673351772:1'),(912,2093,'_elementor_template_type','wp-post'),(913,2093,'_wp_page_template','elementor_canvas'),(914,2093,'_elementor_edit_mode','builder'),(915,2093,'_elementor_version','3.6.4'),(916,2093,'_elementor_data','s:19566:\"a:4:{i:0;a:5:{s:2:\"id\";s:7:\"c785f8b\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:7:{s:9:\"structure\";s:2:\"40\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#272727\";s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"59e4d8d\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"3efef5b\";}}s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"50\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"50\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"50\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:2:\"50\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}s:14:\"padding_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"50\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:2:\"20\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:4:{i:0;a:5:{s:2:\"id\";s:7:\"7d512a4\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:5:{s:12:\"_column_size\";i:25;s:12:\"_inline_size\";d:44.035;s:21:\"space_between_widgets\";i:11;s:19:\"_inline_size_tablet\";i:50;s:19:\"_inline_size_mobile\";i:100;}s:8:\"elements\";a:4:{i:0;a:5:{s:2:\"id\";s:7:\"d9819b2\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:7:{s:5:\"title\";s:8:\"About Us\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#FFFFFF\";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:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}i:1;a:5:{s:2:\"id\";s:7:\"0d31000\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:6:{s:5:\"width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:9;s:5:\"sizes\";a:0:{}}s:5:\"align\";s:4:\"left\";s:4:\"text\";s:7:\"Divider\";s:5:\"color\";s:7:\"#FF4F40\";s:6:\"weight\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:3:\"gap\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"divider\";}i:2;a:5:{s:2:\"id\";s:7:\"76a91d0\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:8:{s:9:\"icon_list\";a:3:{i:0;a:3:{s:4:\"text\";s:38:\"215 Woodland Ave. Manchester, NH 03102\";s:13:\"selected_icon\";a:2:{s:5:\"value\";s:21:\"fas fa-map-marker-alt\";s:7:\"library\";s:8:\"fa-solid\";}s:3:\"_id\";s:7:\"58e20c4\";}i:1;a:3:{s:4:\"text\";s:31:\" Sun - Sat : 9:00 AM - 17:00 PM\";s:13:\"selected_icon\";a:2:{s:5:\"value\";s:12:\"fas fa-clock\";s:7:\"library\";s:8:\"fa-solid\";}s:3:\"_id\";s:7:\"a542391\";}i:2;a:3:{s:4:\"text\";s:14:\"(708) 856-0657\";s:13:\"selected_icon\";a:2:{s:5:\"value\";s:16:\"fas fa-phone-alt\";s:7:\"library\";s:8:\"fa-solid\";}s:3:\"_id\";s:7:\"14ec51d\";}}s:13:\"space_between\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:8;s:5:\"sizes\";a:0:{}}s:10:\"icon_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#AEAEAE\";s:26:\"icon_typography_typography\";s:6:\"custom\";s:27:\"icon_typography_font_family\";s:4:\"Lato\";s:25:\"icon_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:27:\"icon_typography_font_weight\";s:3:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:9:\"icon-list\";}i:3;a:5:{s:2:\"id\";s:7:\"be774db\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:13:{s:16:\"social_icon_list\";a:4:{i:0;a:2:{s:11:\"social_icon\";a:2:{s:5:\"value\";s:17:\"fab fa-facebook-f\";s:7:\"library\";s:9:\"fa-brands\";}s:3:\"_id\";s:7:\"c1d8cec\";}i:1;a:2:{s:11:\"social_icon\";a:2:{s:5:\"value\";s:14:\"fab fa-twitter\";s:7:\"library\";s:9:\"fa-brands\";}s:3:\"_id\";s:7:\"5e43c24\";}i:2;a:2:{s:11:\"social_icon\";a:2:{s:5:\"value\";s:13:\"fab fa-tiktok\";s:7:\"library\";s:9:\"fa-brands\";}s:3:\"_id\";s:7:\"c8bc10a\";}i:3;a:2:{s:11:\"social_icon\";a:2:{s:5:\"value\";s:18:\"fab fa-pinterest-p\";s:7:\"library\";s:9:\"fa-brands\";}s:3:\"_id\";s:7:\"768d19e\";}}s:5:\"align\";s:4:\"left\";s:10:\"icon_color\";s:6:\"custom\";s:18:\"icon_primary_color\";s:9:\"#02010100\";s:20:\"icon_secondary_color\";s:7:\"#FF4F40\";s:9:\"icon_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:12:\"icon_padding\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.7;s:5:\"sizes\";a:0:{}}s:12:\"icon_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:19:\"image_border_border\";s:5:\"solid\";s:18:\"image_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:18:\"image_border_color\";s:7:\"#FF4F40\";s:13:\"border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"30\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"30\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:1;}s:7:\"_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"10\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:12:\"social-icons\";}}s:7:\"isInner\";b:0;}i:1;a:5:{s:2:\"id\";s:7:\"e4e0a49\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:6:{s:12:\"_column_size\";i:25;s:12:\"_inline_size\";d:19.736;s:21:\"space_between_widgets\";i:11;s:19:\"_inline_size_tablet\";i:50;s:19:\"_inline_size_mobile\";i:50;s:13:\"margin_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:6:{i:0;a:5:{s:2:\"id\";s:7:\"8dbd4d5\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:7:{s:5:\"title\";s:8:\"Get Help\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#FFFFFF\";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:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}i:1;a:5:{s:2:\"id\";s:7:\"65e4327\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:6:{s:5:\"width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:22;s:5:\"sizes\";a:0:{}}s:5:\"align\";s:4:\"left\";s:4:\"text\";s:7:\"Divider\";s:5:\"color\";s:7:\"#FF4F40\";s:6:\"weight\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:3:\"gap\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"divider\";}i:2;a:5:{s:2:\"id\";s:7:\"d596d17\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:7:{s:5:\"title\";s:11:\"Help Center\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#AEAEAE\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}i:3;a:5:{s:2:\"id\";s:7:\"b96fa7c\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:7:{s:5:\"title\";s:11:\"Track Order\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#AEAEAE\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}i:4;a:5:{s:2:\"id\";s:7:\"a50d159\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:7:{s:5:\"title\";s:13:\"Shipping Info\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#AEAEAE\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}i:5;a:5:{s:2:\"id\";s:7:\"10510e1\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:7:{s:5:\"title\";s:7:\"Returns\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#AEAEAE\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}}s:7:\"isInner\";b:0;}i:2;a:5:{s:2:\"id\";s:7:\"a31641a\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:6:{s:12:\"_column_size\";i:25;s:12:\"_inline_size\";d:18.565;s:21:\"space_between_widgets\";i:11;s:19:\"_inline_size_tablet\";i:50;s:19:\"_inline_size_mobile\";i:50;s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:6:{i:0;a:5:{s:2:\"id\";s:7:\"59d9273\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:7:{s:5:\"title\";s:7:\"Company\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#FFFFFF\";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:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}i:1;a:5:{s:2:\"id\";s:7:\"46a83e1\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:6:{s:5:\"width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:22;s:5:\"sizes\";a:0:{}}s:5:\"align\";s:4:\"left\";s:4:\"text\";s:7:\"Divider\";s:5:\"color\";s:7:\"#FF4F40\";s:6:\"weight\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:3:\"gap\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"divider\";}i:2;a:5:{s:2:\"id\";s:7:\"7c3c770\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:7:{s:5:\"title\";s:7:\"Careers\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#AEAEAE\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}i:3;a:5:{s:2:\"id\";s:7:\"bfbc9d3\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:7:{s:5:\"title\";s:5:\"About\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#AEAEAE\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}i:4;a:5:{s:2:\"id\";s:7:\"a59a9ec\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:7:{s:5:\"title\";s:6:\"Stores\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#AEAEAE\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}i:5;a:5:{s:2:\"id\";s:7:\"b064a75\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:7:{s:5:\"title\";s:15:\"Want to Collab?\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#AEAEAE\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}}s:7:\"isInner\";b:0;}i:3;a:5:{s:2:\"id\";s:7:\"f50449c\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:6:{s:12:\"_column_size\";i:25;s:12:\"_inline_size\";d:17.588;s:21:\"space_between_widgets\";i:11;s:19:\"_inline_size_tablet\";i:50;s:19:\"_inline_size_mobile\";i:100;s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:6:{i:0;a:5:{s:2:\"id\";s:7:\"5190d02\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:7:{s:5:\"title\";s:11:\"Quick Links\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#FFFFFF\";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:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}i:1;a:5:{s:2:\"id\";s:7:\"9655460\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:6:{s:5:\"width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:22;s:5:\"sizes\";a:0:{}}s:5:\"align\";s:4:\"left\";s:4:\"text\";s:7:\"Divider\";s:5:\"color\";s:7:\"#FF4F40\";s:6:\"weight\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:3:\"gap\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"divider\";}i:2;a:5:{s:2:\"id\";s:7:\"e25dda8\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:7:{s:5:\"title\";s:10:\"Size Guide\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#AEAEAE\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}i:3;a:5:{s:2:\"id\";s:7:\"6ab0fbb\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:7:{s:5:\"title\";s:10:\"Gift Cards\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#AEAEAE\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}i:4;a:5:{s:2:\"id\";s:7:\"0d1dd70\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:7:{s:5:\"title\";s:23:\"Check Gift Card Balance\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#AEAEAE\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}i:5;a:5:{s:2:\"id\";s:7:\"66efcfa\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:7:{s:5:\"title\";s:10:\"Contact Us\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#AEAEAE\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}i:1;a:5:{s:2:\"id\";s:7:\"cb6bdf5\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:6:{s:13:\"custom_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:50;s:5:\"sizes\";a:0:{}}s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#272727\";s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"ad27cd7\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"294f847\";}}s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"10\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:2:\"10\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"c4b827a\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:2:{s:12:\"_column_size\";i:100;s:12:\"_inline_size\";N;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"383dffc\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:3:{s:4:\"text\";s:7:\"Divider\";s:5:\"color\";s:7:\"#3A3A3A\";s:3:\"gap\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"divider\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}i:2;a:5:{s:2:\"id\";s:7:\"2c87f35\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:8:{s:6:\"height\";s:10:\"min-height\";s:13:\"custom_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:50;s:5:\"sizes\";a:0:{}}s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#272727\";s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"ad27cd7\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"294f847\";}}s:9:\"structure\";s:2:\"20\";s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:2:{i:0;a:5:{s:2:\"id\";s:7:\"d71f074\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:3:{s:12:\"_column_size\";i:50;s:12:\"_inline_size\";N;s:16:\"content_position\";s:6:\"center\";}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"bae6496\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:8:{s:5:\"image\";a:4:{s:3:\"url\";s:82:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/Logo-2-2.png\";s:2:\"id\";i:1074;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:12:\"retina_image\";a:4:{s:3:\"url\";s:89:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/Logo-Retina-2-2.png\";s:2:\"id\";i:1075;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:10:\"title_type\";s:4:\"none\";s:12:\"custom_title\";s:14:\"My Custom Logo\";s:18:\"custom_description\";s:7:\"Tagline\";s:12:\"align_mobile\";s:6:\"center\";s:5:\"width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:119;s:5:\"sizes\";a:0:{}}s:13:\"border_border\";s:0:\"\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:8:\"wpr-logo\";}}s:7:\"isInner\";b:0;}i:1;a:5:{s:2:\"id\";s:7:\"0ecadc0\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:2:{s:12:\"_column_size\";i:50;s:12:\"_inline_size\";N;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"23fb6e0\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:8:{s:6:\"editor\";s:161:\"<p>© 2022 Created with <span style=\"color: #808080;\"><a style=\"color: #808080;\" href=\"https://royal-elementor-addons.com/\">Royal Elementor Addons</a></span></p>\";s:5:\"align\";s:5:\"right\";s:10:\"text_color\";s:7:\"#909090\";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:13;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:12:\"align_mobile\";s:6:\"center\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:11:\"text-editor\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}i:3;a:5:{s:2:\"id\";s:7:\"27c299b\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:3:{s:3:\"gap\";s:2:\"no\";s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"b1fc068\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"aab7447\";}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"-1\";s:5:\"right\";i:0;s:6:\"bottom\";s:1:\"0\";s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"12dde41\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:2:{s:12:\"_column_size\";i:100;s:12:\"_inline_size\";N;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"263f2d3\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:12:{s:11:\"button_text\";s:13:\"Scroll To Top\";s:17:\"button_text_color\";s:7:\"#FF4F40\";s:15:\"button_bg_color\";s:9:\"#605BE500\";s:19:\"button_border_color\";s:7:\"#FF4F40\";s:33:\"button_box_shadow_box_shadow_type\";s:3:\"yes\";s:28:\"button_box_shadow_box_shadow\";a:5:{s:10:\"horizontal\";i:0;s:8:\"vertical\";i:0;s:4:\"blur\";i:10;s:6:\"spread\";i:0;s:5:\"color\";s:16:\"rgba(0, 0, 0, 0)\";}s:21:\"button_bg_color_hover\";s:7:\"#FF4F40\";s:25:\"button_border_color_hover\";s:7:\"#FF4F40\";s:30:\"hover_animation_hover_duration\";d:0.5;s:14:\"button_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"13\";s:5:\"right\";s:2:\"15\";s:6:\"bottom\";s:2:\"14\";s:4:\"left\";s:2:\"14\";s:8:\"isLinked\";b:0;}s:15:\"border_switcher\";s:3:\"yes\";s:20:\"button_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"30\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"30\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:1;}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:15:\"wpr-back-to-top\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}}\";'),(917,2093,'_elementor_page_assets','a:0:{}'),(918,2093,'_elementor_page_settings',''),(920,2094,'_elementor_template_type','wp-post'),(921,2094,'_wp_page_template','elementor_canvas'),(922,2094,'_elementor_edit_mode','builder'),(923,2094,'_elementor_version','3.6.4'),(924,2094,'_elementor_data','[{\"id\":\"c785f8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#272727\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"59e4d8d\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"3efef5b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e4e0a49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":11,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8dbd4d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Help\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65e4327\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#FF4F40\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d596d17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Center\",\"align\":\"left\",\"title_color\":\"#AEAEAE\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b96fa7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Track Order\",\"align\":\"left\",\"title_color\":\"#AEAEAE\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a50d159\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shipping Info\",\"align\":\"left\",\"title_color\":\"#AEAEAE\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10510e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Returns\",\"align\":\"left\",\"title_color\":\"#AEAEAE\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"a31641a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":11,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59d9273\",\"elType\":\"widget\",\"settings\":{\"title\":\"Company\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46a83e1\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#FF4F40\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c3c770\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"align\":\"left\",\"title_color\":\"#AEAEAE\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfbc9d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"align\":\"left\",\"title_color\":\"#AEAEAE\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59a9ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stores\",\"align\":\"left\",\"title_color\":\"#AEAEAE\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b064a75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to Collab?\",\"align\":\"left\",\"title_color\":\"#AEAEAE\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f50449c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":11,\"_inline_size_tablet\":50,\"_inline_size_mobile\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5190d02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9655460\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#FF4F40\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e25dda8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Size Guide\",\"align\":\"left\",\"title_color\":\"#AEAEAE\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ab0fbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gift Cards\",\"align\":\"left\",\"title_color\":\"#AEAEAE\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d1dd70\",\"elType\":\"widget\",\"settings\":{\"title\":\"Check Gift Card Balance\",\"align\":\"left\",\"title_color\":\"#AEAEAE\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66efcfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"left\",\"title_color\":\"#AEAEAE\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb6bdf5\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#272727\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ad27cd7\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"294f847\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"c4b827a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"383dffc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#3A3A3A\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27c299b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b1fc068\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"aab7447\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"12dde41\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"263f2d3\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Scroll To Top\",\"button_text_color\":\"#FF4F40\",\"button_bg_color\":\"#605BE500\",\"button_border_color\":\"#FF4F40\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"button_bg_color_hover\":\"#FF4F40\",\"button_border_color_hover\":\"#FF4F40\",\"hover_animation_hover_duration\":0.5,\"button_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"15\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":false},\"border_switcher\":\"yes\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wpr-back-to-top\"}],\"isInner\":false}],\"isInner\":false}]'),(925,2094,'_elementor_page_assets','a:0:{}'),(931,409,'_edit_lock','1674652572:1'),(932,409,'_edit_last','1'),(933,5,'_edit_lock','1675679098:1'),(934,337,'_edit_lock','1673349353:1'),(935,2095,'_wp_attached_file','2022/06/SF-logo.png'),(936,2095,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:91;s:4:\"file\";s:19:\"2022/06/SF-logo.png\";s:8:\"filesize\";i:26181;s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:18:\"SF-logo-100x91.png\";s:5:\"width\";i:100;s:6:\"height\";i:91;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3964;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"SF-logo-150x91.png\";s:5:\"width\";i:150;s:6:\"height\";i:91;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6474;}}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:{}}}'),(937,2096,'_elementor_template_type','wp-post'),(938,2096,'_wp_page_template','elementor_canvas'),(939,2096,'_elementor_edit_mode','builder'),(940,2096,'_elementor_version','3.7.0'),(941,2096,'_elementor_data','s:14536:\"a:1:{i:0;a:5:{s:2:\"id\";s:7:\"99f5450\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:10:{s:9:\"structure\";s:2:\"40\";s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"b450fcf\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"d47cc9b\";}}s:7:\"z_index\";i:3;s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:13:\"border_border\";s:5:\"solid\";s:12:\"border_width\";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:\"1\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:12:\"border_color\";s:7:\"#EAEAEA\";s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"5\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"5\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:4:{i:0;a:5:{s:2:\"id\";s:7:\"2371ecf\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:5:{s:12:\"_column_size\";i:25;s:12:\"_inline_size\";d:15.789;s:16:\"content_position\";s:6:\"center\";s:19:\"_inline_size_mobile\";i:35;s:19:\"_inline_size_tablet\";i:20;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"4cb5bfe\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:10:{s:10:\"title_type\";s:4:\"none\";s:12:\"custom_title\";s:14:\"My Custom Logo\";s:18:\"custom_description\";s:7:\"Tagline\";s:5:\"width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:120;s:5:\"sizes\";a:0:{}}s:13:\"border_border\";s:0:\"\";s:5:\"image\";a:4:{s:3:\"url\";s:82:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/Logo-1-2.png\";s:2:\"id\";i:952;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:7:\"_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"5\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:12:\"retina_image\";a:4:{s:3:\"url\";s:89:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/Logo-Retina-1-2.png\";s:2:\"id\";i:953;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:12:\"width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:12:\"align_mobile\";s:4:\"left\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:8:\"wpr-logo\";}}s:7:\"isInner\";b:0;}i:1;a:5:{s:2:\"id\";s:7:\"7b88682\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:6:{s:12:\"_column_size\";i:25;s:12:\"_inline_size\";d:51.93;s:16:\"content_position\";s:6:\"center\";s:19:\"_inline_size_mobile\";i:65;s:19:\"_inline_size_tablet\";i:80;s:14:\"padding_mobile\";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:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"53eac1f\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:51:{s:11:\"menu_select\";s:9:\"main-menu\";s:17:\"menu_align_tablet\";s:6:\"center\";s:16:\"toggle_btn_txt_1\";s:4:\"Menu\";s:16:\"toggle_btn_txt_2\";s:5:\"Close\";s:23:\"toggle_btn_align_mobile\";s:5:\"right\";s:15:\"menu_item_color\";s:7:\"#272727\";s:32:\"menu_items_typography_typography\";s:6:\"custom\";s:33:\"menu_items_typography_font_family\";s:7:\"Poppins\";s:31:\"menu_items_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:38:\"menu_items_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:38:\"menu_items_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:33:\"menu_items_typography_font_weight\";s:3:\"400\";s:21:\"menu_item_color_hover\";s:7:\"#FF4F40\";s:19:\"pointer_color_hover\";s:7:\"#FF4F40\";s:24:\"menu_items_sub_icon_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:14:\"pointer_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:24:\"menu_items_padding_bg_hr\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:17;s:5:\"sizes\";a:0:{}}s:21:\"menu_items_padding_vr\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"menu_items_border_color\";s:7:\"#222222\";s:14:\"sub_menu_color\";s:7:\"#323232\";s:23:\"sub_menu_color_bg_hover\";s:7:\"#FF4F40\";s:30:\"sub_menu_typography_typography\";s:6:\"custom\";s:31:\"sub_menu_typography_font_family\";s:7:\"Poppins\";s:29:\"sub_menu_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:36:\"sub_menu_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:36:\"sub_menu_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:31:\"sub_menu_typography_font_weight\";s:3:\"400\";s:19:\"sub_menu_padding_vr\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:10;s:5:\"sizes\";a:0:{}}s:16:\"sub_menu_divider\";s:0:\"\";s:22:\"sub_menu_border_border\";s:0:\"\";s:35:\"sub_menu_box_shadow_box_shadow_type\";s:3:\"yes\";s:30:\"sub_menu_box_shadow_box_shadow\";a:5:{s:10:\"horizontal\";i:0;s:8:\"vertical\";i:0;s:4:\"blur\";i:8;s:6:\"spread\";i:0;s:5:\"color\";s:70:\"rgba(164.99999999999997, 164.99999999999997, 164.99999999999997, 0.22)\";}s:22:\"toggle_btn_color_hover\";s:7:\"#FF4F40\";s:23:\"toggle_btn_lines_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:21:\"toggle_btn_line_space\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:4;s:5:\"sizes\";a:0:{}}s:16:\"toggle_btn_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:39;s:5:\"sizes\";a:0:{}}s:26:\"mobile_menu_bg_color_focus\";s:7:\"#FF4F40\";s:25:\"mobile_menu_divider_color\";s:7:\"#F3F3F3\";s:18:\"mobile_menu_offset\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:89;s:5:\"sizes\";a:0:{}}s:23:\"toggle_btn_align_tablet\";s:5:\"right\";s:21:\"menu_items_sub_offset\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:31;s:5:\"sizes\";a:0:{}}s:27:\"sub_mega_menu_border_border\";s:0:\"\";s:22:\"mobile_menu_padding_hr\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:19;s:5:\"sizes\";a:0:{}}s:22:\"mobile_menu_padding_vr\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:25:\"mobile_menu_sub_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:26:\"mobile_menu_sub_padding_hr\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:26:\"mobile_menu_sub_padding_vr\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:8;s:5:\"sizes\";a:0:{}}s:40:\"sub_mega_menu_box_shadow_box_shadow_type\";s:3:\"yes\";s:35:\"sub_mega_menu_box_shadow_box_shadow\";a:5:{s:10:\"horizontal\";i:0;s:8:\"vertical\";i:0;s:4:\"blur\";i:5;s:6:\"spread\";i:0;s:5:\"color\";s:19:\"rgba(0, 0, 0, 0.13)\";}s:25:\"mobile_menu_offset_laptop\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}s:25:\"mobile_menu_offset_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:60;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:13:\"wpr-mega-menu\";}}s:7:\"isInner\";b:0;}i:2;a:5:{s:2:\"id\";s:7:\"a5f87d1\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:6:{s:12:\"_column_size\";i:25;s:12:\"_inline_size\";d:26.129;s:16:\"content_position\";s:6:\"center\";s:19:\"_inline_size_mobile\";i:85;s:19:\"_inline_size_tablet\";i:90;s:14:\"padding_mobile\";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:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"3411949\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:62:{s:11:\"ajax_search\";s:3:\"yes\";s:16:\"view_result_text\";s:12:\"View Results\";s:18:\"search_placeholder\";s:26:\"Search for Dress, Top, Hat\";s:15:\"search_btn_text\";s:2:\"Go\";s:14:\"input_bg_color\";s:9:\"#FFFFFF00\";s:20:\"input_focus_bg_color\";s:9:\"#FFFFFF00\";s:27:\"input_typography_typography\";s:6:\"custom\";s:28:\"input_typography_font_family\";s:7:\"Poppins\";s:26:\"input_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:28:\"input_typography_font_weight\";s:3:\"400\";s:17:\"input_border_size\";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:19:\"input_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:1;}s:13:\"input_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"7\";s:5:\"right\";s:2:\"10\";s:6:\"bottom\";s:1:\"7\";s:4:\"left\";s:2:\"10\";s:8:\"isLinked\";b:0;}s:14:\"btn_text_color\";s:7:\"#FF4F40\";s:12:\"btn_bg_color\";s:9:\"#605BE500\";s:17:\"btn_hv_text_color\";s:7:\"#FD3D2C\";s:15:\"btn_hv_bg_color\";s:9:\"#4A45D200\";s:9:\"btn_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:41;s:5:\"sizes\";a:0:{}}s:25:\"btn_typography_typography\";s:6:\"custom\";s:26:\"btn_typography_font_family\";s:6:\"Roboto\";s:26:\"btn_typography_font_weight\";s:3:\"400\";s:15:\"btn_border_size\";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:24:\"search_list_item_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"10\";s:5:\"right\";s:2:\"10\";s:6:\"bottom\";s:2:\"10\";s:4:\"left\";s:2:\"10\";s:8:\"isLinked\";b:1;}s:27:\"title_typography_typography\";s:6:\"custom\";s:28:\"title_typography_font_family\";s:7:\"Poppins\";s:28:\"title_typography_font_weight\";s:3:\"400\";s:17:\"description_color\";s:7:\"#666666\";s:34:\"description_typography_font_family\";s:10:\"Montserrat\";s:32:\"description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:11:\"image_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:110;s:5:\"sizes\";a:0:{}}s:34:\"view_result_typography_font_family\";s:7:\"Poppins\";s:32:\"view_result_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:25:\"view_result_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:1;}s:19:\"view_result_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"5\";s:5:\"right\";s:2:\"10\";s:6:\"bottom\";s:1:\"5\";s:4:\"left\";s:2:\"10\";s:8:\"isLinked\";b:0;}s:18:\"close_btn_position\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:32:\"no_results_typography_typography\";s:6:\"custom\";s:33:\"no_results_typography_font_family\";s:7:\"Poppins\";s:31:\"no_results_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:33:\"no_results_typography_font_weight\";s:3:\"400\";s:26:\"search_results_box_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"10\";s:5:\"right\";s:2:\"10\";s:6:\"bottom\";s:2:\"10\";s:4:\"left\";s:2:\"10\";s:8:\"isLinked\";b:1;}s:8:\"_z_index\";i:5;s:25:\"view_result_text_bg_color\";s:7:\"#FFFFFF\";s:28:\"view_result_text_bg_color_hr\";s:7:\"#FFFFFF\";s:8:\"_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:14:\"_border_border\";s:5:\"solid\";s:13:\"_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:13:\"_border_color\";s:7:\"#E4E4E4\";s:14:\"_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"30\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"30\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:1;}s:17:\"slider_content_hr\";s:5:\"right\";s:17:\"search_list_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:564;s:5:\"sizes\";a:0:{}}s:24:\"search_list_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:636;s:5:\"sizes\";a:0:{}}s:24:\"search_list_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:326;s:5:\"sizes\";a:0:{}}s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:20:\"show_ajax_thumbnails\";s:3:\"yes\";s:31:\"exclude_posts_without_thumbnail\";s:3:\"yes\";s:24:\"slider_content_hr_mobile\";s:4:\"left\";s:24:\"search_list_top_distance\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:19;s:5:\"sizes\";a:0:{}}s:7:\"_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:3:\"-22\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:14:\"_margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:3:\"-31\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:14:\"_margin_mobile\";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:\"_animation\";s:6:\"fadeIn\";s:16:\"_animation_delay\";i:700;}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:10:\"wpr-search\";}}s:7:\"isInner\";b:0;}i:3;a:5:{s:2:\"id\";s:7:\"a35594b\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:5:{s:12:\"_column_size\";i:25;s:12:\"_inline_size\";i:6;s:19:\"_inline_size_tablet\";i:10;s:19:\"_inline_size_mobile\";i:15;s:16:\"content_position\";s:6:\"center\";}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"c5cf868\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:33:{s:19:\"mini_cart_alignment\";s:5:\"right\";s:12:\"toggle_title\";s:4:\"Cart\";s:15:\"separator_color\";s:7:\"#E8E8E8\";s:15:\"separator_style\";s:5:\"solid\";s:28:\"title_typography_font_family\";s:7:\"Poppins\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";s:3:\"400\";s:21:\"mini_cart_btn_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"10\";s:5:\"right\";s:2:\"10\";s:6:\"bottom\";s:2:\"10\";s:4:\"left\";s:2:\"10\";s:8:\"isLinked\";b:1;}s:21:\"mini_cart_title_color\";s:7:\"#777777\";s:24:\"mini_cart_quantity_color\";s:7:\"#777777\";s:22:\"mini_cart_border_color\";s:7:\"#E8E8E8\";s:18:\"mini_cart_distance\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:15:\"mini_cart_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:375;s:5:\"sizes\";a:0:{}}s:17:\"mini_cart_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"15\";s:5:\"right\";s:2:\"15\";s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"15\";s:8:\"isLinked\";b:1;}s:16:\"mini_cart_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:184;s:5:\"sizes\";a:0:{}}s:21:\"scrollbar_thumb_color\";s:7:\"#ECECEC\";s:13:\"buttons_color\";s:7:\"#222222\";s:16:\"buttons_bg_color\";s:7:\"#FFFFFF\";s:20:\"buttons_border_color\";s:7:\"#FF4F40\";s:19:\"buttons_bg_color_hr\";s:7:\"#FF4F40\";s:23:\"buttons_border_color_hr\";s:7:\"#FF4F40\";s:13:\"button_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"10\";s:5:\"right\";s:1:\"5\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:14:\"button_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"12\";s:5:\"right\";s:2:\"12\";s:6:\"bottom\";s:2:\"12\";s:4:\"left\";s:2:\"12\";s:8:\"isLinked\";b:1;}s:26:\"toggle_btn_item_count_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:27:\"mini_cart_title_color_hover\";s:7:\"#222222\";s:37:\"mini_cart_title_typography_typography\";s:6:\"custom\";s:38:\"mini_cart_title_typography_font_family\";s:7:\"Poppins\";s:36:\"mini_cart_title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:38:\"mini_cart_title_typography_font_weight\";s:3:\"600\";s:33:\"mini_cart_button_alignment_mobile\";s:4:\"left\";s:30:\"toggle_btn_item_count_bg_color\";s:7:\"#FF4F40\";s:11:\"toggle_text\";s:4:\"none\";s:28:\"mini_cart_btn_padding_mobile\";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:\"7\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:21:\"wpr-product-mini-cart\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}}\";'),(942,2096,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(943,2096,'_elementor_page_settings',''),(945,2097,'_elementor_template_type','wp-post'),(946,2097,'_wp_page_template','elementor_canvas'),(947,2097,'_elementor_edit_mode','builder'),(948,2097,'_elementor_version','3.7.0'),(949,2097,'_elementor_data','[{\"id\":\"99f5450\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b450fcf\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"d47cc9b\"}],\"z_index\":3,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2371ecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":15.789,\"content_position\":\"center\",\"_inline_size_mobile\":35,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"4cb5bfe\",\"elType\":\"widget\",\"settings\":{\"title_type\":\"none\",\"custom_title\":\"My Custom Logo\",\"custom_description\":\"Tagline\",\"width\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"border_border\":\"\",\"image\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2022\\/06\\/SF-logo.png\",\"id\":2095,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"retina_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"wpr-logo\"}],\"isInner\":false},{\"id\":\"7b88682\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":51.93,\"content_position\":\"center\",\"_inline_size_mobile\":65,\"_inline_size_tablet\":80,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53eac1f\",\"elType\":\"widget\",\"settings\":{\"menu_select\":\"main-menu\",\"menu_align_tablet\":\"center\",\"toggle_btn_txt_1\":\"Menu\",\"toggle_btn_txt_2\":\"Close\",\"toggle_btn_align_mobile\":\"right\",\"menu_item_color\":\"#272727\",\"menu_items_typography_typography\":\"custom\",\"menu_items_typography_font_family\":\"Poppins\",\"menu_items_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_items_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_items_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"menu_items_typography_font_weight\":\"400\",\"menu_item_color_hover\":\"#FF4F40\",\"pointer_color_hover\":\"#FF4F40\",\"menu_items_sub_icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"pointer_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_items_padding_bg_hr\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_items_padding_vr\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"menu_items_border_color\":\"#222222\",\"sub_menu_color\":\"#323232\",\"sub_menu_color_bg_hover\":\"#FF4F40\",\"sub_menu_typography_typography\":\"custom\",\"sub_menu_typography_font_family\":\"Poppins\",\"sub_menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"sub_menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"sub_menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"sub_menu_typography_font_weight\":\"400\",\"sub_menu_padding_vr\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_menu_divider\":\"\",\"sub_menu_border_border\":\"\",\"sub_menu_box_shadow_box_shadow_type\":\"yes\",\"sub_menu_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(164.99999999999997, 164.99999999999997, 164.99999999999997, 0.22)\"},\"toggle_btn_color_hover\":\"#FF4F40\",\"toggle_btn_lines_height\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"toggle_btn_line_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"toggle_btn_width\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"mobile_menu_bg_color_focus\":\"#FF4F40\",\"mobile_menu_divider_color\":\"#F3F3F3\",\"mobile_menu_offset\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"toggle_btn_align_tablet\":\"right\",\"menu_items_sub_offset\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"sub_mega_menu_border_border\":\"\",\"mobile_menu_padding_hr\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"mobile_menu_padding_vr\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mobile_menu_sub_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"mobile_menu_sub_padding_hr\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"mobile_menu_sub_padding_vr\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"sub_mega_menu_box_shadow_box_shadow_type\":\"yes\",\"sub_mega_menu_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"mobile_menu_offset_laptop\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"mobile_menu_offset_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-mega-menu\"}],\"isInner\":false},{\"id\":\"a5f87d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.129,\"content_position\":\"center\",\"_inline_size_mobile\":85,\"_inline_size_tablet\":90,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3411949\",\"elType\":\"widget\",\"settings\":{\"ajax_search\":\"yes\",\"view_result_text\":\"View Results\",\"search_placeholder\":\"Search for Dress, Top, Hat\",\"search_btn_text\":\"Go\",\"input_bg_color\":\"#FFFFFF00\",\"input_focus_bg_color\":\"#FFFFFF00\",\"input_typography_typography\":\"custom\",\"input_typography_font_family\":\"Poppins\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"input_typography_font_weight\":\"400\",\"input_border_size\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"input_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"input_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"10\",\"bottom\":\"7\",\"left\":\"10\",\"isLinked\":false},\"btn_text_color\":\"#FF4F40\",\"btn_bg_color\":\"#605BE500\",\"btn_hv_text_color\":\"#FD3D2C\",\"btn_hv_bg_color\":\"#4A45D200\",\"btn_width\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Roboto\",\"btn_typography_font_weight\":\"400\",\"btn_border_size\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"search_list_item_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_weight\":\"400\",\"description_color\":\"#666666\",\"description_typography_font_family\":\"Montserrat\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"image_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"view_result_typography_font_family\":\"Poppins\",\"view_result_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"view_result_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view_result_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"close_btn_position\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"no_results_typography_typography\":\"custom\",\"no_results_typography_font_family\":\"Poppins\",\"no_results_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"no_results_typography_font_weight\":\"400\",\"search_results_box_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":5,\"view_result_text_bg_color\":\"#FFFFFF\",\"view_result_text_bg_color_hr\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#E4E4E4\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"slider_content_hr\":\"right\",\"search_list_width\":{\"unit\":\"px\",\"size\":564,\"sizes\":[]},\"search_list_width_tablet\":{\"unit\":\"px\",\"size\":636,\"sizes\":[]},\"search_list_width_mobile\":{\"unit\":\"px\",\"size\":326,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"show_ajax_thumbnails\":\"yes\",\"exclude_posts_without_thumbnail\":\"yes\",\"slider_content_hr_mobile\":\"left\",\"search_list_top_distance\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-22\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-31\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"wpr-search\"}],\"isInner\":false},{\"id\":\"a35594b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":6,\"_inline_size_tablet\":10,\"_inline_size_mobile\":15,\"content_position\":\"center\"},\"elements\":[{\"id\":\"c5cf868\",\"elType\":\"widget\",\"settings\":{\"mini_cart_alignment\":\"right\",\"toggle_title\":\"Cart\",\"separator_color\":\"#E8E8E8\",\"separator_style\":\"solid\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"mini_cart_btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"mini_cart_title_color\":\"#777777\",\"mini_cart_quantity_color\":\"#777777\",\"mini_cart_border_color\":\"#E8E8E8\",\"mini_cart_distance\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mini_cart_width\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"mini_cart_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"mini_cart_height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]},\"scrollbar_thumb_color\":\"#ECECEC\",\"buttons_color\":\"#222222\",\"buttons_bg_color\":\"#FFFFFF\",\"buttons_border_color\":\"#FF4F40\",\"buttons_bg_color_hr\":\"#FF4F40\",\"buttons_border_color_hr\":\"#FF4F40\",\"button_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"toggle_btn_item_count_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mini_cart_title_color_hover\":\"#222222\",\"mini_cart_title_typography_typography\":\"custom\",\"mini_cart_title_typography_font_family\":\"Poppins\",\"mini_cart_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mini_cart_title_typography_font_weight\":\"600\",\"mini_cart_button_alignment_mobile\":\"left\",\"toggle_btn_item_count_bg_color\":\"#FF4F40\",\"toggle_text\":\"none\",\"mini_cart_btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"wpr-product-mini-cart\"}],\"isInner\":false}],\"isInner\":false}]'),(950,2097,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(953,2098,'_wp_attached_file','2022/06/BCT21-08-Blackc-scaled.webp'),(954,2098,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1702;s:6:\"height\";i:2560;s:4:\"file\";s:35:\"2022/06/BCT21-08-Blackc-scaled.webp\";s:8:\"filesize\";i:70932;s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:35:\"BCT21-08-Blackc-scaled-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3036;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:35:\"BCT21-08-Blackc-scaled-100x100.webp\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:818;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:35:\"BCT21-08-Blackc-scaled-600x902.webp\";s:5:\"width\";i:600;s:6:\"height\";i:902;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:10720;}s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"BCT21-08-Blackc-199x300.webp\";s:5:\"width\";i:199;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:2160;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"BCT21-08-Blackc-681x1024.webp\";s:5:\"width\";i:681;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:14722;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"BCT21-08-Blackc-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:1264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"BCT21-08-Blackc-768x1155.webp\";s:5:\"width\";i:768;s:6:\"height\";i:1155;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:18454;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"BCT21-08-Blackc-1021x1536.webp\";s:5:\"width\";i:1021;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:30372;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:30:\"BCT21-08-Blackc-1361x2048.webp\";s:5:\"width\";i:1361;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:48710;}}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:{}}}'),(955,2099,'_sku','547568769-1'),(956,2099,'_regular_price','50'),(958,2099,'total_sales','0'),(959,2099,'_tax_status','taxable'),(960,2099,'_tax_class',''),(961,2099,'_manage_stock','no'),(962,2099,'_backorders','no'),(963,2099,'_sold_individually','no'),(964,2099,'_weight','0.02'),(965,2099,'_length','12'),(966,2099,'_width','45'),(967,2099,'_height','23'),(968,2099,'_virtual','no'),(969,2099,'_downloadable','no'),(970,2099,'_download_limit','-1'),(971,2099,'_download_expiry','-1'),(972,2099,'_thumbnail_id','2446'),(973,2099,'_stock',NULL),(974,2099,'_stock_status','instock'),(975,2099,'_wc_average_rating','0'),(976,2099,'_wc_review_count','0'),(977,2099,'_product_attributes','a:1:{s:5:\"color\";a:6:{s:4:\"name\";s:5:\"Color\";s:5:\"value\";s:30:\"Green | Yellow | Brown | White\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}}'),(978,2099,'_product_version','7.3.0'),(979,2099,'_price','50'),(980,2099,'_edit_lock','1675677213:1'),(981,2099,'_edit_last','1'),(982,2100,'_sku','547568769-1-1'),(983,2100,'_regular_price','110'),(984,2100,'_sale_price','75'),(985,2100,'total_sales','0'),(986,2100,'_tax_status','taxable'),(987,2100,'_tax_class',''),(988,2100,'_manage_stock','no'),(989,2100,'_backorders','no'),(990,2100,'_sold_individually','no'),(991,2100,'_weight','0.02'),(992,2100,'_length','12'),(993,2100,'_width','45'),(994,2100,'_height','23'),(995,2100,'_virtual','no'),(996,2100,'_downloadable','no'),(997,2100,'_download_limit','-1'),(998,2100,'_download_expiry','-1'),(999,2100,'_thumbnail_id','2098'),(1000,2100,'_stock',NULL),(1001,2100,'_stock_status','instock'),(1002,2100,'_wc_average_rating','0'),(1003,2100,'_wc_review_count','0'),(1004,2100,'_product_attributes','a:1:{s:5:\"color\";a:6:{s:4:\"name\";s:5:\"Color\";s:5:\"value\";s:30:\"Green | Yellow | Brown | White\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}}'),(1005,2100,'_product_version','8.2.1'),(1006,2100,'_price','75'),(1007,2100,'_edit_lock','1700575676:1'),(1008,2100,'_edit_last','1'),(1009,2101,'_elementor_edit_mode','builder'),(1010,2101,'_elementor_template_type','wp-page'),(1011,2101,'_elementor_version','3.8.1'),(1012,2101,'_wp_page_template','elementor_canvas'),(1013,2101,'_elementor_data','[{\"id\":\"638551d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"10f834f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"e37e7f2\"}],\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0},\"elements\":[{\"id\":\"a808755\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4069cc7\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"b849f95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"df56f06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sale Products\",\"align\":\"center\",\"title_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec00d4f\",\"elType\":\"widget\",\"settings\":{\"query_not_found_text\":\"No Posts Found!\",\"layout_filters\":\"\",\"layout_pagination\":\"\",\"grid_elements\":[{\"_id\":\"e49138e\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"d8ef0e7\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"add-to-cart\",\"_id\":\"33d399d\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\",\"query_selection\":\"manual\",\"query_posts_per_page\":6,\"layout_gutter_vr\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color_hr\":\"#333333\",\"title_transition_duration\":0.5,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"categories_color_hr\":\"#CD98CC\",\"categories_typography_typography\":\"custom\",\"categories_typography_font_family\":\"Poppins\",\"categories_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"categories_typography_font_weight\":\"400\",\"product_status_os_bg_color\":\"#FF4F40\",\"product_status_typography_typography\":\"custom\",\"product_status_typography_font_family\":\"Poppins\",\"product_status_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"product_status_typography_font_weight\":\"400\",\"product_status_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"product_status_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"product_status_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"product_price_color\":\"#FF4F40\",\"product_price_old_color\":\"#FF7E73\",\"product_price_typography_typography\":\"custom\",\"product_price_typography_font_family\":\"Poppins\",\"product_price_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"product_price_typography_font_weight\":\"400\",\"add_to_cart_border_color\":\"#FF4F40\",\"add_to_cart_color_hr\":\"#FFFFFF\",\"add_to_cart_bg_color_hr\":\"#FF4F40\",\"add_to_cart_border_color_hr\":\"#FF4F40\",\"add_to_cart_transition_duration\":0.3,\"add_to_cart_typography_typography\":\"custom\",\"add_to_cart_typography_font_family\":\"Poppins\",\"add_to_cart_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"add_to_cart_typography_font_weight\":\"400\",\"add_to_cart_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"add_to_cart_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"30\",\"bottom\":\"8\",\"left\":\"30\",\"isLinked\":false},\"add_to_cart_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"product_price_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"cross_sell_heading\":\"You may be interested in...\",\"upsell_heading\":\"You may also like...\",\"sort_heading\":\"Shop\",\"sort_and_results_count\":\"\",\"product_rating_color\":\"#FF4F40\",\"product_rating_score_color\":\"#FF4F40\",\"product_status_ft_bg_color\":\"#FF4F40\",\"layout_columns_tablet\":\"2\",\"sort_and_results_count_tablet\":\"\",\"sort_and_results_count_mobile\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"product_price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"add_to_cart_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"add_to_cart_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"25\",\"bottom\":\"7\",\"left\":\"25\",\"isLinked\":false},\"lightbox_typography_font_family\":\"Roboto\",\"lightbox_typography_font_size\":{\"unit\":\"px\",\"size\":88,\"sizes\":[]},\"lightbox_typography_font_weight\":\"400\",\"sort_title_color\":\"#FFFFFF\",\"results_color\":\"#FFFFFF\",\"sorting_color\":\"#2D2D2D\",\"grid_linked_products_heading\":\"You may be interested in...\",\"query_manual_products\":[\"53\",\"83\",\"364\",\"404\",\"407\",\"409\"]},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(1014,2101,'_elementor_page_assets','a:0:{}'),(1016,2102,'_elementor_edit_mode','builder'),(1017,2102,'_elementor_template_type','wp-page'),(1018,2102,'_elementor_version','3.8.1'),(1019,2102,'_wp_page_template','elementor_canvas'),(1020,2102,'_elementor_data','[{\"id\":\"638551d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"10f834f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"e37e7f2\"}],\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0},\"elements\":[{\"id\":\"a808755\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4069cc7\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"b849f95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"df56f06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sale Products\",\"align\":\"center\",\"title_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec00d4f\",\"elType\":\"widget\",\"settings\":{\"query_not_found_text\":\"No Posts Found!\",\"layout_filters\":\"\",\"layout_pagination\":\"\",\"grid_elements\":[{\"_id\":\"e49138e\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"d8ef0e7\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"add-to-cart\",\"_id\":\"33d399d\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\",\"query_selection\":\"manual\",\"query_posts_per_page\":6,\"layout_gutter_vr\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color_hr\":\"#333333\",\"title_transition_duration\":0.5,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"categories_color_hr\":\"#CD98CC\",\"categories_typography_typography\":\"custom\",\"categories_typography_font_family\":\"Poppins\",\"categories_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"categories_typography_font_weight\":\"400\",\"product_status_os_bg_color\":\"#FF4F40\",\"product_status_typography_typography\":\"custom\",\"product_status_typography_font_family\":\"Poppins\",\"product_status_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"product_status_typography_font_weight\":\"400\",\"product_status_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"product_status_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"product_status_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"product_price_color\":\"#FF4F40\",\"product_price_old_color\":\"#FF7E73\",\"product_price_typography_typography\":\"custom\",\"product_price_typography_font_family\":\"Poppins\",\"product_price_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"product_price_typography_font_weight\":\"400\",\"add_to_cart_border_color\":\"#FF4F40\",\"add_to_cart_color_hr\":\"#FFFFFF\",\"add_to_cart_bg_color_hr\":\"#FF4F40\",\"add_to_cart_border_color_hr\":\"#FF4F40\",\"add_to_cart_transition_duration\":0.3,\"add_to_cart_typography_typography\":\"custom\",\"add_to_cart_typography_font_family\":\"Poppins\",\"add_to_cart_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"add_to_cart_typography_font_weight\":\"400\",\"add_to_cart_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"add_to_cart_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"30\",\"bottom\":\"8\",\"left\":\"30\",\"isLinked\":false},\"add_to_cart_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"product_price_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"cross_sell_heading\":\"You may be interested in...\",\"upsell_heading\":\"You may also like...\",\"sort_heading\":\"Shop\",\"sort_and_results_count\":\"\",\"product_rating_color\":\"#FF4F40\",\"product_rating_score_color\":\"#FF4F40\",\"product_status_ft_bg_color\":\"#FF4F40\",\"layout_columns_tablet\":\"2\",\"sort_and_results_count_tablet\":\"\",\"sort_and_results_count_mobile\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"product_price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"add_to_cart_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"add_to_cart_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"25\",\"bottom\":\"7\",\"left\":\"25\",\"isLinked\":false},\"lightbox_typography_font_family\":\"Roboto\",\"lightbox_typography_font_size\":{\"unit\":\"px\",\"size\":88,\"sizes\":[]},\"lightbox_typography_font_weight\":\"400\",\"sort_title_color\":\"#FFFFFF\",\"results_color\":\"#FFFFFF\",\"sorting_color\":\"#2D2D2D\",\"grid_linked_products_heading\":\"You may be interested in...\",\"query_manual_products\":[\"53\",\"83\",\"364\",\"404\",\"407\",\"409\"]},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(1021,2102,'_elementor_page_assets','a:0:{}'),(1023,2103,'_elementor_edit_mode','builder'),(1024,2103,'_elementor_template_type','wp-page'),(1025,2103,'_elementor_version','3.8.1'),(1026,2103,'_wp_page_template','elementor_canvas'),(1027,2103,'_elementor_data','[{\"id\":\"638551d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"10f834f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"e37e7f2\"}],\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0},\"elements\":[{\"id\":\"a808755\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4069cc7\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"b849f95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"df56f06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sale Products\",\"align\":\"center\",\"title_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec00d4f\",\"elType\":\"widget\",\"settings\":{\"query_not_found_text\":\"No Posts Found!\",\"layout_filters\":\"\",\"layout_pagination\":\"\",\"grid_elements\":[{\"_id\":\"e49138e\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"d8ef0e7\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"add-to-cart\",\"_id\":\"33d399d\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\",\"query_posts_per_page\":6,\"layout_gutter_vr\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color_hr\":\"#333333\",\"title_transition_duration\":0.5,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"categories_color_hr\":\"#CD98CC\",\"categories_typography_typography\":\"custom\",\"categories_typography_font_family\":\"Poppins\",\"categories_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"categories_typography_font_weight\":\"400\",\"product_status_os_bg_color\":\"#FF4F40\",\"product_status_typography_typography\":\"custom\",\"product_status_typography_font_family\":\"Poppins\",\"product_status_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"product_status_typography_font_weight\":\"400\",\"product_status_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"product_status_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"product_status_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"product_price_color\":\"#FF4F40\",\"product_price_old_color\":\"#FF7E73\",\"product_price_typography_typography\":\"custom\",\"product_price_typography_font_family\":\"Poppins\",\"product_price_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"product_price_typography_font_weight\":\"400\",\"add_to_cart_border_color\":\"#FF4F40\",\"add_to_cart_color_hr\":\"#FFFFFF\",\"add_to_cart_bg_color_hr\":\"#FF4F40\",\"add_to_cart_border_color_hr\":\"#FF4F40\",\"add_to_cart_transition_duration\":0.3,\"add_to_cart_typography_typography\":\"custom\",\"add_to_cart_typography_font_family\":\"Poppins\",\"add_to_cart_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"add_to_cart_typography_font_weight\":\"400\",\"add_to_cart_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"add_to_cart_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"30\",\"bottom\":\"8\",\"left\":\"30\",\"isLinked\":false},\"add_to_cart_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"product_price_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"cross_sell_heading\":\"You may be interested in...\",\"upsell_heading\":\"You may also like...\",\"sort_heading\":\"Shop\",\"sort_and_results_count\":\"\",\"product_rating_color\":\"#FF4F40\",\"product_rating_score_color\":\"#FF4F40\",\"product_status_ft_bg_color\":\"#FF4F40\",\"layout_columns_tablet\":\"2\",\"sort_and_results_count_tablet\":\"\",\"sort_and_results_count_mobile\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"product_price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"add_to_cart_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"add_to_cart_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"25\",\"bottom\":\"7\",\"left\":\"25\",\"isLinked\":false},\"lightbox_typography_font_family\":\"Roboto\",\"lightbox_typography_font_size\":{\"unit\":\"px\",\"size\":88,\"sizes\":[]},\"lightbox_typography_font_weight\":\"400\",\"sort_title_color\":\"#FFFFFF\",\"results_color\":\"#FFFFFF\",\"sorting_color\":\"#2D2D2D\",\"grid_linked_products_heading\":\"You may be interested in...\",\"query_manual_products\":[\"53\",\"83\",\"364\",\"404\",\"407\",\"409\"]},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(1028,2103,'_elementor_page_assets','a:0:{}'),(1035,409,'wc_sf_hide_cart_button','yes'),(1038,2099,'wc_sf_meta_repeatable_fields','a:1:{i:0;a:3:{s:21:\"wc_sf_hpp_button_text\";s:20:\"Monthly Subscription\";s:20:\"wc_sf_hpp_product_id\";s:36:\"8f38937f-4da7-41d2-9892-f13e70a0eaa6\";s:22:\"wc_sf_hpp_plan_id_name\";s:49:\"53231721-4c09-40b3-aaa6-703ef7745a5e__monthlyplan\";}}'),(1039,2099,'wc_sf_hide_cart_button','yes'),(1040,409,'wc_sf_meta_repeatable_fields','a:1:{i:0;a:3:{s:21:\"wc_sf_hpp_button_text\";s:20:\"Weekly Subscriptions\";s:20:\"wc_sf_hpp_product_id\";s:36:\"8f38937f-4da7-41d2-9892-f13e70a0eaa6\";s:22:\"wc_sf_hpp_plan_id_name\";s:48:\"2b30d9cf-8fbb-4dd3-95ec-04093bb945d7__weeklyplan\";}}'),(1041,409,'_wp_old_slug','laney-ribbed-maxi-dress'),(1044,2108,'_edit_lock','1670416204:1'),(1046,2108,'_edit_last','1'),(1047,2108,'_wp_page_template','elementor_canvas'),(1048,2108,'_elementor_edit_mode','builder'),(1049,2108,'_elementor_template_type','wp-page'),(1050,2108,'_elementor_version','3.9.0'),(1051,2111,'_wp_page_template','default'),(1052,2111,'_elementor_edit_mode','builder'),(1053,2111,'_elementor_template_type','wp-page'),(1054,2111,'_elementor_version','3.8.1'),(1055,2112,'_wp_page_template','default'),(1056,2112,'_elementor_edit_mode','builder'),(1057,2112,'_elementor_template_type','wp-page'),(1058,2112,'_elementor_version','3.8.1'),(1059,2108,'_elementor_data','[{\"id\":\"ca8c33f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"d06d4df\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5a88f08\"}]},\"elements\":[{\"id\":\"70f545f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a286df3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"c8ebd65\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[woocommerce_my_account]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d9edfa\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"28245a8\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"28cfe91\"}]},\"elements\":[{\"id\":\"aff0b95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6351383\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1060,2113,'_wp_page_template','default'),(1061,2113,'_elementor_edit_mode','builder'),(1062,2113,'_elementor_template_type','wp-page'),(1063,2113,'_elementor_version','3.8.1'),(1064,2113,'_elementor_data','[{\"id\":\"ca8c33f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"d06d4df\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5a88f08\"}]},\"elements\":[{\"id\":\"70f545f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c8ebd65\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[woocommerce_my_account]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(1065,2108,'_elementor_page_assets','a:0:{}'),(1067,1680,'_edit_last','1'),(1068,2114,'_elementor_edit_mode','builder'),(1069,2114,'_elementor_template_type','wp-page'),(1070,2114,'_elementor_version','3.6.4'),(1071,2114,'_wp_page_template','default'),(1072,2114,'_elementor_data',''),(1073,2114,'_elementor_page_settings',''),(1074,1680,'_edit_lock','1673339240:1'),(1075,1679,'_edit_last','1'),(1076,2115,'_elementor_edit_mode','builder'),(1077,2115,'_elementor_template_type','wp-page'),(1078,2115,'_elementor_version','3.6.4'),(1079,2115,'_wp_page_template','elementor_canvas'),(1080,2115,'_elementor_data','s:8014:\"a:1:{i:0;a:5:{s:2:\"id\";s:8:\"72497e78\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:3:{s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"b1dfbce\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"440648a\";}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:3:\"100\";s:5:\"right\";i:0;s:6:\"bottom\";s:3:\"100\";s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:8:\"32d78d6b\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:1:{s:12:\"_column_size\";i:100;}s:8:\"elements\";a:3:{i:0;a:5:{s:2:\"id\";s:7:\"7512a79\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:6:{s:5:\"title\";s:8:\"Checkout\";s:11:\"title_color\";s:7:\"#222222\";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:30;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}i:1;a:5:{s:2:\"id\";s:7:\"9cf6050\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:8:{s:6:\"editor\";s:49:\"<p>Debating me breeding beautiful answered.</p>\";s:5:\"align\";s:4:\"left\";s:10:\"text_color\";s:7:\"#777777\";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:\"400\";s:7:\"_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:3:\"-15\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:11:\"text-editor\";}i:2;a:5:{s:2:\"id\";s:7:\"9927120\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:69:{s:25:\"checkout_general_bg_color\";s:7:\"#FFFFFF\";s:29:\"checkout_general_border_color\";s:7:\"#EDEDED\";s:29:\"checkout_general_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:30:\"checkout_general_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:1;}s:17:\"form_labels_color\";s:7:\"#222222\";s:34:\"form_labels_typography_font_family\";s:7:\"Poppins\";s:32:\"form_labels_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:25:\"forms_fields_normal_color\";s:7:\"#999999\";s:32:\"forms_fields_normal_border_color\";s:7:\"#EDEDED\";s:24:\"forms_fields_focus_color\";s:7:\"#444444\";s:24:\"form_fields_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:25:\"form_fields_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:1;}s:19:\"form_fields_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"10\";s:5:\"right\";s:2:\"10\";s:6:\"bottom\";s:2:\"10\";s:4:\"left\";s:2:\"10\";s:8:\"isLinked\";b:1;}s:28:\"checkout_table_heading_color\";s:7:\"#222222\";s:45:\"checkout_table_heading_typography_font_family\";s:7:\"Poppins\";s:43:\"checkout_table_heading_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:30:\"checkout_table_heading_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"7\";s:5:\"right\";s:1:\"7\";s:6:\"bottom\";s:1:\"7\";s:4:\"left\";s:1:\"7\";s:8:\"isLinked\";b:1;}s:32:\"checkout_table_description_color\";s:7:\"#666666\";s:49:\"checkout_table_description_typography_font_family\";s:7:\"Poppins\";s:47:\"checkout_table_description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:54:\"checkout_table_description_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:54:\"checkout_table_description_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:21:\"payment_methods_color\";s:7:\"#555555\";s:26:\"payment_methods_link_color\";s:7:\"#FF4F40\";s:32:\"payment_methods_link_hover_color\";s:7:\"#FF4F40\";s:28:\"payment_methods_labels_color\";s:7:\"#222222\";s:31:\"payment_methods_inputs_distance\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:6;s:5:\"sizes\";a:0:{}}s:30:\"payment_methods_tooltips_color\";s:7:\"#222222\";s:24:\"place_order_button_color\";s:7:\"#FFFFFF\";s:27:\"place_order_button_bg_color\";s:7:\"#FF4F40\";s:31:\"place_order_button_border_color\";s:7:\"#FF4F40\";s:30:\"place_order_button_bg_color_hr\";s:7:\"#EC3F30\";s:41:\"place_order_button_typography_font_family\";s:7:\"Poppins\";s:39:\"place_order_button_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:41:\"place_order_button_typography_font_weight\";s:3:\"400\";s:31:\"place_order_button_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:24:\"checkout_general_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"10\";s:5:\"right\";s:2:\"10\";s:6:\"bottom\";s:2:\"10\";s:4:\"left\";s:2:\"10\";s:8:\"isLinked\";b:1;}s:31:\"headings_typography_font_family\";s:7:\"Poppins\";s:29:\"headings_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}s:45:\"checkout_table_heading_typography_font_weight\";s:3:\"400\";s:49:\"checkout_table_description_typography_font_weight\";s:3:\"400\";s:37:\"order_received_typography_font_family\";s:7:\"Poppins\";s:35:\"order_received_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:37:\"order_received_typography_font_weight\";s:3:\"400\";s:34:\"place_order_button_border_color_hr\";s:7:\"#EC3F30\";s:26:\"place_order_button_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"12\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"12\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:0;}s:25:\"place_order_button_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:1;}s:35:\"forms_fields_typography_font_family\";s:7:\"Poppins\";s:33:\"forms_fields_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:27:\"checkout_table_border_color\";s:7:\"#EDEDED\";s:31:\"payment_methods_separator_color\";s:7:\"#EDEDED\";s:25:\"tooltip_texts_font_family\";s:4:\"Lato\";s:23:\"tooltip_texts_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:25:\"tooltip_texts_font_weight\";s:3:\"400\";s:34:\"payment_methods_inputs_distance_hr\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:5;s:5:\"sizes\";a:0:{}}s:7:\"_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:36:\"headings_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:34:\"notice_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:34:\"checkout_first_column_width_mobile\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:30:\"checkout_general_gutter_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}s:39:\"form_labels_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:40:\"forms_fields_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:15:\"notice_bg_color\";s:7:\"#FF4F40\";s:24:\"info_notice_accent_color\";s:7:\"#FFFFFF\";s:25:\"error_notice_accent_color\";s:7:\"#FF4F40\";s:50:\"checkout_table_heading_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:42:\"order_received_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:30:\"tooltip_texts_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:46:\"place_order_button_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:17:\"wpr-page-checkout\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}}\";'),(1081,2115,'_elementor_page_assets','a:0:{}'),(1082,2115,'_elementor_page_settings',''),(1084,1679,'_edit_lock','1670411231:1'),(1085,1678,'_edit_last','1'),(1086,2116,'_elementor_template_type','wp-page'),(1087,2116,'_elementor_version','3.6.4'),(1088,2116,'_elementor_edit_mode','builder'),(1089,2116,'_wp_page_template','elementor_canvas'),(1090,2116,'_elementor_data','s:8579:\"a:1:{i:0;a:5:{s:2:\"id\";s:8:\"66f22496\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:3:{s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"03d3865\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"6086334\";}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:3:\"100\";s:5:\"right\";i:0;s:6:\"bottom\";s:3:\"100\";s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:8:\"27ed61d9\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:1:{s:12:\"_column_size\";i:100;}s:8:\"elements\";a:3:{i:0;a:5:{s:2:\"id\";s:7:\"00300b3\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:7:{s:5:\"title\";s:4:\"Cart\";s:11:\"title_color\";s:7:\"#222222\";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:30;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}i:1;a:5:{s:2:\"id\";s:7:\"cb3d557\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:9:{s:6:\"editor\";s:40:\"<p>Debating me breeding be answered.</p>\";s:5:\"align\";s:4:\"left\";s:10:\"text_color\";s:7:\"#777777\";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:\"400\";s:7:\"_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:3:\"-15\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:11:\"text-editor\";}i:2;a:5:{s:2:\"id\";s:7:\"3d36673\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:78:{s:23:\"update_cart_button_text\";s:11:\"Update Cart\";s:12:\"totals_title\";s:11:\"Cart Totals\";s:20:\"checkout_button_text\";s:19:\"Proceed to Checkout\";s:27:\"update_shipping_button_text\";s:6:\"Update\";s:24:\"apply_coupon_button_text\";s:12:\"Apply coupon\";s:19:\"coupon_input_gutter\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:7;s:5:\"sizes\";a:0:{}}s:22:\"product_summary_gutter\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:33;s:5:\"sizes\";a:0:{}}s:16:\"buttons_bg_color\";s:9:\"#FF4F4000\";s:20:\"cart_totals_td_color\";s:7:\"#222222\";s:17:\"cart_totals_color\";s:7:\"#222222\";s:24:\"cart_totals_border_color\";s:7:\"#222222\";s:23:\"cart_totals_bg_color_hr\";s:7:\"#FF4F40\";s:24:\"cart_totals_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:24:\"checkout_button_bg_color\";s:7:\"#FF4F40\";s:28:\"checkout_button_border_color\";s:7:\"#FF4F40\";s:27:\"checkout_button_bg_color_hr\";s:7:\"#FF4F40\";s:38:\"checkout_button_typography_font_family\";s:7:\"Poppins\";s:36:\"checkout_button_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:38:\"checkout_button_typography_font_weight\";s:3:\"400\";s:22:\"cart_sections_bg_color\";s:7:\"#FFFFFF\";s:26:\"cart_wrappers_border_color\";s:7:\"#EDEDED\";s:26:\"cart_wrappers_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:29:\"cart_table_product_name_color\";s:7:\"#777777\";s:18:\"product_image_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:74;s:5:\"sizes\";a:0:{}}s:24:\"cart_tables_border_color\";s:7:\"#EDEDED\";s:24:\"cart_tables_border_width\";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:\"1\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:20:\"totals_title_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"10\";s:5:\"right\";s:2:\"15\";s:6:\"bottom\";s:2:\"10\";s:4:\"left\";s:2:\"15\";s:8:\"isLinked\";b:0;}s:41:\"cart_table_heading_typography_font_family\";s:7:\"Poppins\";s:39:\"cart_table_heading_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:17;s:5:\"sizes\";a:0:{}}s:27:\"cart_table_remove_icon_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:24:\"form_fields_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:25:\"form_fields_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:1;}s:45:\"cart_table_description_typography_font_family\";s:7:\"Poppins\";s:43:\"cart_table_description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:13:\"buttons_color\";s:7:\"#222222\";s:30:\"buttons_typography_font_family\";s:7:\"Poppins\";s:28:\"buttons_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:30:\"buttons_typography_font_weight\";s:3:\"400\";s:14:\"buttons_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:13:\"button_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:31:\"checkout_button_border_color_hr\";s:7:\"#FF4F40\";s:34:\"forms_field_typography_font_family\";s:7:\"Poppins\";s:32:\"forms_field_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:20:\"buttons_border_color\";s:7:\"#FF4F40\";s:19:\"buttons_bg_color_hr\";s:7:\"#FF4F40\";s:23:\"buttons_border_color_hr\";s:7:\"#FF4F40\";s:27:\"buttons_transition_duration\";d:0.3;s:23:\"checkout_button_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"13\";s:5:\"right\";s:2:\"25\";s:6:\"bottom\";s:2:\"13\";s:4:\"left\";s:2:\"25\";s:8:\"isLinked\";b:0;}s:30:\"buttons_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.9;s:5:\"sizes\";a:0:{}}s:14:\"button_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"6\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"6\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}s:31:\"cart_totals_headings_typography\";s:6:\"custom\";s:32:\"cart_totals_headings_font_family\";s:7:\"Poppins\";s:32:\"cart_totals_headings_font_weight\";s:3:\"400\";s:28:\"checkout_button_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:22:\"checkout_button_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:1;}s:20:\"buttons_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:7:\"_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:20:\"cart_totals_color_hr\";s:7:\"#FFFFFF\";s:27:\"cart_totals_border_color_hr\";s:7:\"#FF4F40\";s:25:\"cart_totals_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:1;}s:28:\"cart_totals_title_typography\";s:6:\"custom\";s:29:\"cart_totals_title_font_family\";s:7:\"Poppins\";s:27:\"cart_totals_title_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}s:34:\"cart_totals_title_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:22;s:5:\"sizes\";a:0:{}}s:29:\"cart_totals_title_font_weight\";s:3:\"600\";s:29:\"cart_totals_texts_font_family\";s:7:\"Poppins\";s:29:\"cart_totals_texts_font_weight\";s:3:\"400\";s:25:\"coupon_input_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:446;s:5:\"sizes\";a:0:{}}s:46:\"cart_table_heading_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:50:\"cart_table_description_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:39:\"forms_field_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:35:\"buttons_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:34:\"cart_totals_texts_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:43:\"checkout_button_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:15:\"notice_bg_color\";s:7:\"#FF4F40\";s:24:\"info_notice_accent_color\";s:7:\"#222222\";s:25:\"error_notice_accent_color\";s:7:\"#FFFFFF\";s:29:\"notice_typography_font_family\";s:7:\"Poppins\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:13:\"wpr-page-cart\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}}\";'),(1091,2116,'_elementor_page_assets','a:0:{}'),(1092,2116,'_elementor_page_settings',''),(1094,1678,'_edit_lock','1670411235:1'),(1123,2120,'_wp_page_template','elementor_canvas'),(1124,2120,'_elementor_edit_mode','builder'),(1125,2120,'_elementor_template_type','wp-page'),(1126,2120,'_elementor_version','3.8.1'),(1127,2120,'_elementor_data','[{\"id\":\"ca8c33f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"d06d4df\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5a88f08\"}]},\"elements\":[{\"id\":\"70f545f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c8ebd65\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[woocommerce_my_account]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(1128,2120,'_elementor_page_assets','a:0:{}'),(1130,2121,'_wp_page_template','elementor_canvas'),(1131,2121,'_elementor_edit_mode','builder'),(1132,2121,'_elementor_template_type','wp-page'),(1133,2121,'_elementor_version','3.8.1'),(1134,2121,'_elementor_data','[{\"id\":\"ca8c33f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"d06d4df\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5a88f08\"}]},\"elements\":[{\"id\":\"70f545f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c8ebd65\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[woocommerce_my_account]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(1135,2121,'_elementor_page_assets','a:0:{}'),(1137,2122,'_wp_page_template','elementor_canvas'),(1138,2122,'_elementor_edit_mode','builder'),(1139,2122,'_elementor_template_type','wp-page'),(1140,2122,'_elementor_version','3.8.1'),(1141,2122,'_elementor_data','[{\"id\":\"ca8c33f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"d06d4df\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5a88f08\"}]},\"elements\":[{\"id\":\"70f545f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c8ebd65\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[woocommerce_my_account]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d9edfa\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"28245a8\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"28cfe91\"}]},\"elements\":[{\"id\":\"aff0b95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6351383\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1142,2122,'_elementor_page_assets','a:0:{}'),(1145,2123,'_wp_page_template','elementor_canvas'),(1146,2123,'_elementor_edit_mode','builder'),(1147,2123,'_elementor_template_type','wp-page'),(1148,2123,'_elementor_version','3.9.0'),(1149,2123,'_elementor_data','[{\"id\":\"ca8c33f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"d06d4df\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5a88f08\"}]},\"elements\":[{\"id\":\"70f545f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c8ebd65\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[woocommerce_my_account]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d9edfa\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"28245a8\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"28cfe91\"}]},\"elements\":[{\"id\":\"aff0b95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6351383\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1150,2123,'_elementor_page_assets','a:0:{}'),(1152,2124,'_wp_page_template','elementor_canvas'),(1153,2124,'_elementor_edit_mode','builder'),(1154,2124,'_elementor_template_type','wp-page'),(1155,2124,'_elementor_version','3.9.0'),(1156,2124,'_elementor_data','[{\"id\":\"ca8c33f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"d06d4df\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5a88f08\"}]},\"elements\":[{\"id\":\"70f545f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c8ebd65\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[woocommerce_my_account]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d9edfa\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"28245a8\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"28cfe91\"}]},\"elements\":[{\"id\":\"aff0b95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6351383\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1157,2124,'_elementor_page_assets','a:0:{}'),(1159,2125,'_wp_page_template','elementor_canvas'),(1160,2125,'_elementor_edit_mode','builder'),(1161,2125,'_elementor_template_type','wp-page'),(1162,2125,'_elementor_version','3.9.0'),(1163,2125,'_elementor_data','[{\"id\":\"ca8c33f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"d06d4df\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5a88f08\"}]},\"elements\":[{\"id\":\"70f545f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a286df3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"c8ebd65\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[woocommerce_my_account]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d9edfa\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"28245a8\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"28cfe91\"}]},\"elements\":[{\"id\":\"aff0b95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6351383\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1164,2125,'_elementor_page_assets','a:0:{}'),(1176,2131,'_edit_lock','1675679968:1'),(1177,2131,'_elementor_edit_mode','builder'),(1178,2131,'_elementor_template_type','wp-page'),(1179,2131,'_elementor_version','3.10.1'),(1180,2133,'_wp_attached_file','2023/01/placeholder.png'),(1181,2133,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:23:\"2023/01/placeholder.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"placeholder-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"placeholder-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"placeholder-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4757;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:23:\"placeholder-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8989;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"placeholder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1468;}}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:{}}}'),(1182,2133,'_elementor_source_image_hash','6f6081793ca9bfaa096d1aadeee04ac85ab4e6b2'),(1183,2134,'_wp_attached_file','2023/01/placeholder-1.png'),(1184,2134,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2023/01/placeholder-1.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"placeholder-1-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"placeholder-1-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"placeholder-1-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"placeholder-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4757;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"placeholder-1-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8989;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1468;}}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:{}}}'),(1185,2134,'_elementor_source_image_hash','6f6081793ca9bfaa096d1aadeee04ac85ab4e6b2'),(1186,2135,'_wp_attached_file','2023/01/placeholder-2.png'),(1187,2135,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2023/01/placeholder-2.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"placeholder-2-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"placeholder-2-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"placeholder-2-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"placeholder-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4757;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"placeholder-2-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8989;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1468;}}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:{}}}'),(1188,2135,'_elementor_source_image_hash','6f6081793ca9bfaa096d1aadeee04ac85ab4e6b2'),(1189,2136,'_wp_attached_file','2023/01/placeholder-3.png'),(1190,2136,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2023/01/placeholder-3.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"placeholder-3-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"placeholder-3-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-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:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"placeholder-3-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"placeholder-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4757;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"placeholder-3-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8989;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1468;}}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:{}}}'),(1191,2136,'_elementor_source_image_hash','6f6081793ca9bfaa096d1aadeee04ac85ab4e6b2'),(1192,2137,'_wp_attached_file','2023/01/placeholder-4.png'),(1193,2137,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2023/01/placeholder-4.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"placeholder-4-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"placeholder-4-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-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:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"placeholder-4-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"placeholder-4-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4757;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"placeholder-4-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8989;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-4-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1468;}}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:{}}}'),(1194,2137,'_elementor_source_image_hash','6f6081793ca9bfaa096d1aadeee04ac85ab4e6b2'),(1195,2138,'_wp_attached_file','2023/01/placeholder-5.png'),(1196,2138,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2023/01/placeholder-5.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"placeholder-5-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"placeholder-5-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-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:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"placeholder-5-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"placeholder-5-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4757;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"placeholder-5-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8989;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-5-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1468;}}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:{}}}'),(1197,2138,'_elementor_source_image_hash','6f6081793ca9bfaa096d1aadeee04ac85ab4e6b2'),(1198,2139,'_elementor_edit_mode','builder'),(1199,2139,'_elementor_template_type','wp-page'),(1200,2139,'_elementor_version','3.9.0'),(1201,2140,'_elementor_edit_mode','builder'),(1202,2140,'_elementor_template_type','wp-page'),(1203,2140,'_elementor_version','3.9.0'),(1204,2131,'_wp_page_template','default'),(1205,2131,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"b7923cd\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy Now\",\"background_color\":\"#605BE5\",\"__dynamic__\":[],\"link\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"hover_animation\":\"grow\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"100\",\"bottom\":\"15\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"b774aab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>30 Days Money Back Guarantee<\\/p>\",\"align\":\"center\",\"text_color\":\"#7A7A7AD1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"071c7bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy Now\",\"background_color\":\"#605BE5\",\"__dynamic__\":[],\"link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"hover_animation\":\"grow\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"100\",\"bottom\":\"15\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1719878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>30 Days Money Back Guarantee<\\/p>\",\"align\":\"center\",\"text_color\":\"#7A7A7AD1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"0a93e85\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy Now\",\"background_color\":\"#605BE5\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"ffeeb1d\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%222454%22%7D\\\"]\"},\"align\":\"center\",\"size\":\"md\",\"hover_animation\":\"grow\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"100\",\"bottom\":\"15\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"38263ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>30 Days Money Back Guarantee<\\/p>\",\"align\":\"center\",\"text_color\":\"#7A7A7AD1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1206,2141,'_elementor_edit_mode','builder'),(1207,2141,'_elementor_template_type','wp-page'),(1208,2141,'_elementor_version','3.9.0'),(1209,2141,'_wp_page_template','default'),(1210,2141,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}]},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Condensed\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1211,2131,'_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\";}}'),(1225,2143,'_elementor_edit_mode','builder'),(1226,2143,'_elementor_template_type','wp-page'),(1227,2143,'_elementor_version','3.9.0'),(1228,2143,'_wp_page_template','default'),(1229,2143,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}]},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Condensed\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1230,2143,'_elementor_page_assets','a:0:{}'),(1232,2144,'_elementor_edit_mode','builder'),(1233,2144,'_elementor_template_type','wp-page'),(1234,2144,'_elementor_version','3.9.0'),(1235,2144,'_wp_page_template','default'),(1236,2144,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}]},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Condensed\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1237,2144,'_elementor_page_assets','a:0:{}'),(1239,2145,'_elementor_edit_mode','builder'),(1240,2145,'_elementor_template_type','wp-page'),(1241,2145,'_elementor_version','3.9.0'),(1242,2145,'_wp_page_template','default'),(1243,2145,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Condensed\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1244,2145,'_elementor_page_assets','a:0:{}'),(1247,2146,'_elementor_edit_mode','builder'),(1248,2146,'_elementor_template_type','wp-page'),(1249,2146,'_elementor_version','3.9.0'),(1250,2146,'_wp_page_template','default'),(1251,2146,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Condensed\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1252,2146,'_elementor_page_assets','a:0:{}'),(1254,2147,'_elementor_edit_mode','builder'),(1255,2147,'_elementor_template_type','wp-page'),(1256,2147,'_elementor_version','3.9.0'),(1257,2147,'_wp_page_template','default'),(1258,2147,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Condensed\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1259,2147,'_elementor_page_assets','a:0:{}'),(1261,2148,'_elementor_edit_mode','builder'),(1262,2148,'_elementor_template_type','wp-page'),(1263,2148,'_elementor_version','3.9.0'),(1264,2148,'_wp_page_template','default'),(1265,2148,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Condensed\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1266,2148,'_elementor_page_assets','a:0:{}'),(1269,2149,'_edit_lock','1672924806:1'),(1270,2149,'_elementor_edit_mode','builder'),(1271,2149,'_elementor_template_type','wp-page'),(1272,2149,'_elementor_version','3.9.0'),(1273,2151,'_elementor_edit_mode','builder'),(1274,2151,'_elementor_template_type','wp-page'),(1275,2151,'_elementor_version','3.9.0'),(1276,2151,'_wp_page_template','default'),(1277,2151,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Condensed\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1278,2151,'_elementor_page_assets','a:0:{}'),(1280,2152,'_elementor_edit_mode','builder'),(1281,2152,'_elementor_template_type','wp-page'),(1282,2152,'_elementor_version','3.9.0'),(1283,2152,'_wp_page_template','default'),(1284,2152,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Condensed\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1285,2152,'_elementor_page_assets','a:0:{}'),(1287,2153,'_elementor_edit_mode','builder'),(1288,2153,'_elementor_template_type','wp-page'),(1289,2153,'_elementor_version','3.9.0'),(1290,2153,'_wp_page_template','default'),(1291,2153,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Condensed\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1292,2153,'_elementor_page_assets','a:0:{}'),(1295,2154,'_elementor_edit_mode','builder'),(1296,2154,'_elementor_template_type','wp-page'),(1297,2154,'_elementor_version','3.9.0'),(1298,2154,'_wp_page_template','default'),(1299,2154,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Condensed\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1300,2154,'_elementor_page_assets','a:0:{}'),(1302,2155,'_elementor_edit_mode','builder'),(1303,2155,'_elementor_template_type','wp-page'),(1304,2155,'_elementor_version','3.9.0'),(1305,2155,'_wp_page_template','default'),(1306,2155,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Condensed\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1307,2155,'_elementor_page_assets','a:0:{}'),(1309,2156,'_elementor_edit_mode','builder'),(1310,2156,'_elementor_template_type','wp-page'),(1311,2156,'_elementor_version','3.9.0'),(1312,2156,'_wp_page_template','default'),(1313,2156,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Condensed\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/2939517a-580e-4203-bc7b-433f62fe55c3\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1314,2156,'_elementor_page_assets','a:0:{}'),(1316,2157,'_elementor_edit_mode','builder'),(1317,2157,'_elementor_template_type','wp-page'),(1318,2157,'_elementor_version','3.9.0'),(1319,2157,'_wp_page_template','default'),(1320,2157,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Condensed\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/2939517a-580e-4203-bc7b-433f62fe55c3\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1321,2157,'_elementor_page_assets','a:0:{}'),(1322,2158,'_elementor_edit_mode','builder'),(1323,2158,'_elementor_template_type','wp-page'),(1324,2158,'_elementor_version','3.9.0'),(1325,2158,'_wp_page_template','default'),(1326,2158,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Condensed\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/2939517a-580e-4203-bc7b-433f62fe55c3\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1327,2158,'_elementor_page_assets','a:0:{}'),(1328,2159,'_elementor_edit_mode','builder'),(1329,2159,'_elementor_template_type','wp-page'),(1330,2159,'_elementor_version','3.9.0'),(1331,2159,'_wp_page_template','default'); INSERT INTO `wp_postmeta` VALUES (1332,2159,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Condensed\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/2939517a-580e-4203-bc7b-433f62fe55c3\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/47669555-7ea2-4125-bda7-0a6e6c0919d8\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1333,2159,'_elementor_page_assets','a:0:{}'),(1342,2161,'_elementor_edit_mode','builder'),(1343,2161,'_elementor_template_type','wp-page'),(1344,2161,'_elementor_version','3.9.0'),(1345,2161,'_wp_page_template','default'),(1346,2161,'_elementor_data','[{\"id\":\"8bdc057\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"30f0012\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"fcee728\"}]},\"elements\":[{\"id\":\"f18c247\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"67dae91\",\"elType\":\"widget\",\"settings\":{\"json_url\":\"https:\\/\\/assets3.lottiefiles.com\\/packages\\/lf20_ghs9bkkc.json\"},\"elements\":[],\"widgetType\":\"wpr-lottie-animations\"},{\"id\":\"d31ab77\",\"elType\":\"widget\",\"settings\":{\"json_url\":\"https:\\/\\/assets1.lottiefiles.com\\/packages\\/lf20_iVPQC8jyX2.json\"},\"elements\":[],\"widgetType\":\"wpr-lottie-animations\"}],\"isInner\":false}],\"isInner\":false}]'),(1347,2161,'_elementor_page_assets','a:0:{}'),(1349,2162,'_edit_lock','1697723954:1'),(1350,2162,'_elementor_edit_mode','builder'),(1351,2162,'_elementor_template_type','wp-page'),(1352,2162,'_elementor_version','3.9.0'),(1354,2164,'_wp_attached_file','2023/01/93.png'),(1355,2164,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:863;s:6:\"height\";i:353;s:4:\"file\";s:14:\"2023/01/93.png\";s:8:\"filesize\";i:31923;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"93-300x123.png\";s:5:\"width\";i:300;s:6:\"height\";i:123;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31532;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"93-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16367;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:14:\"93-768x314.png\";s:5:\"width\";i:768;s:6:\"height\";i:314;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:108368;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:14:\"93-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39648;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:14:\"93-600x245.png\";s:5:\"width\";i:600;s:6:\"height\";i:245;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:77763;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:14:\"93-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9719;}}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:{}}}'),(1356,2164,'_elementor_source_image_hash','25f7ae9455133ee9e0cfa79e581f8283452d9cd9'),(1357,2165,'_wp_attached_file','2023/01/placeholder-6.png'),(1358,2165,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2023/01/placeholder-6.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"placeholder-6-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"placeholder-6-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-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:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"placeholder-6-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"placeholder-6-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4757;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"placeholder-6-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8989;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-6-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1468;}}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:{}}}'),(1359,2165,'_elementor_source_image_hash','6f6081793ca9bfaa096d1aadeee04ac85ab4e6b2'),(1360,2166,'_wp_attached_file','2023/01/placeholder-7.png'),(1361,2166,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2023/01/placeholder-7.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"placeholder-7-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"placeholder-7-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-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:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"placeholder-7-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"placeholder-7-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4757;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"placeholder-7-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8989;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-7-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1468;}}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:{}}}'),(1362,2166,'_elementor_source_image_hash','6f6081793ca9bfaa096d1aadeee04ac85ab4e6b2'),(1363,2167,'_wp_attached_file','2023/01/placeholder-8.png'),(1364,2167,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2023/01/placeholder-8.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"placeholder-8-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"placeholder-8-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-8-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"placeholder-8-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"placeholder-8-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4757;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"placeholder-8-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8989;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-8-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1468;}}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:{}}}'),(1365,2167,'_elementor_source_image_hash','6f6081793ca9bfaa096d1aadeee04ac85ab4e6b2'),(1366,2168,'_wp_attached_file','2023/01/placeholder-9.png'),(1367,2168,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2023/01/placeholder-9.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"placeholder-9-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"placeholder-9-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-9-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"placeholder-9-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"placeholder-9-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4757;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"placeholder-9-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8989;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-9-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1468;}}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:{}}}'),(1368,2168,'_elementor_source_image_hash','6f6081793ca9bfaa096d1aadeee04ac85ab4e6b2'),(1369,2169,'_wp_attached_file','2023/01/placeholder-10.png'),(1370,2169,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/01/placeholder-10.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-10-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-10-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-10-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-10-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"placeholder-10-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4757;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"placeholder-10-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8989;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-10-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1468;}}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:{}}}'),(1371,2169,'_elementor_source_image_hash','6f6081793ca9bfaa096d1aadeee04ac85ab4e6b2'),(1372,2170,'_wp_attached_file','2023/01/placeholder-11.png'),(1373,2170,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/01/placeholder-11.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-11-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-11-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-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:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-11-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"placeholder-11-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4757;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"placeholder-11-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8989;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-11-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1468;}}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:{}}}'),(1374,2170,'_elementor_source_image_hash','6f6081793ca9bfaa096d1aadeee04ac85ab4e6b2'),(1375,2171,'_wp_attached_file','2023/01/placeholder-12.png'),(1376,2171,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/01/placeholder-12.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-12-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-12-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-12-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-12-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"placeholder-12-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4757;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"placeholder-12-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8989;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-12-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1468;}}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:{}}}'),(1377,2171,'_elementor_source_image_hash','6f6081793ca9bfaa096d1aadeee04ac85ab4e6b2'),(1378,2172,'_wp_attached_file','2023/01/placeholder-13.png'),(1379,2172,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/01/placeholder-13.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-13-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-13-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-13-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-13-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"placeholder-13-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4757;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"placeholder-13-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8989;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-13-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1468;}}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:{}}}'),(1380,2172,'_elementor_source_image_hash','6f6081793ca9bfaa096d1aadeee04ac85ab4e6b2'),(1381,2173,'_wp_attached_file','2023/01/placeholder-14.png'),(1382,2173,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/01/placeholder-14.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-14-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-14-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-14-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-14-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"placeholder-14-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4757;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"placeholder-14-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8989;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-14-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1468;}}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:{}}}'),(1383,2173,'_elementor_source_image_hash','6f6081793ca9bfaa096d1aadeee04ac85ab4e6b2'),(1384,2174,'_wp_attached_file','2023/01/placeholder-15.png'),(1385,2174,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/01/placeholder-15.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-15-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-15-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-15-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-15-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"placeholder-15-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4757;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"placeholder-15-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8989;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-15-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1468;}}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:{}}}'),(1386,2174,'_elementor_source_image_hash','6f6081793ca9bfaa096d1aadeee04ac85ab4e6b2'),(1387,2175,'_wp_attached_file','2023/01/placeholder-16.png'),(1388,2175,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/01/placeholder-16.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-16-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-16-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-16-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-16-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"placeholder-16-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4757;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"placeholder-16-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8989;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-16-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1468;}}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:{}}}'),(1389,2175,'_elementor_source_image_hash','6f6081793ca9bfaa096d1aadeee04ac85ab4e6b2'),(1390,2176,'_wp_attached_file','2023/01/placeholder-17.png'),(1391,2176,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/01/placeholder-17.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-17-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-17-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-17-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-17-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"placeholder-17-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4757;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"placeholder-17-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8989;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-17-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1468;}}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:{}}}'),(1392,2176,'_elementor_source_image_hash','6f6081793ca9bfaa096d1aadeee04ac85ab4e6b2'),(1393,2177,'_elementor_edit_mode','builder'),(1394,2177,'_elementor_template_type','page'),(1395,2177,'_elementor_version','3.9.0'),(1396,2177,'_elementor_data','[{\"id\":\"f7b3516\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"},\"layer_width\":100,\"data_depth\":0.4},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"},\"layer_width\":100,\"data_depth\":0.4}],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4dc6859f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2bf8f9ab\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"},\"layer_width\":100,\"data_depth\":0.4},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"},\"layer_width\":100,\"data_depth\":0.4}],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5cc78300\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"797fc604\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_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\":\"57740358\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_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\":\"33d2f725\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"},\"layer_width\":100,\"data_depth\":0.4},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"},\"layer_width\":100,\"data_depth\":0.4}],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"579b3adb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e8b27e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_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\":\"1d6d25e5\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"},\"layer_width\":100,\"data_depth\":0.4},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"},\"layer_width\":100,\"data_depth\":0.4}],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"49aa796c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1f11166e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are glad that you have considered our <strong>subscription management and payment processing platform<\\/strong> to manage your subscription business operations.<\\/p><p>Thank you for requesting more information. We will get back to you shortly with details.<br \\/><br \\/><\\/p>\",\"align\":\"center\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_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\":\"57bd75d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_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}]'),(1397,2178,'_elementor_edit_mode','builder'),(1398,2178,'_elementor_template_type','page'),(1399,2178,'_elementor_version','3.9.0'),(1400,2178,'_elementor_data','[{\"id\":\"f7b3516\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"},\"layer_width\":100,\"data_depth\":0.4},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"},\"layer_width\":100,\"data_depth\":0.4}],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4dc6859f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2bf8f9ab\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"},\"layer_width\":100,\"data_depth\":0.4},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"},\"layer_width\":100,\"data_depth\":0.4}],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5cc78300\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"797fc604\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_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\":\"57740358\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_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\":\"33d2f725\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"},\"layer_width\":100,\"data_depth\":0.4},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"},\"layer_width\":100,\"data_depth\":0.4}],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"579b3adb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e8b27e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_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\":\"1d6d25e5\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"},\"layer_width\":100,\"data_depth\":0.4},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"},\"layer_width\":100,\"data_depth\":0.4}],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"49aa796c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}],\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1f11166e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are glad that you have considered our <strong>subscription management and payment processing platform<\\/strong> to manage your subscription business operations.<\\/p><p>Thank you for requesting more information. We will get back to you shortly with details.<br \\/><br \\/><\\/p>\",\"align\":\"center\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_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\":\"57bd75d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_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}]'),(1401,2177,'_elementor_page_assets','a:0:{}'),(1409,2180,'_elementor_edit_mode','builder'),(1410,2180,'_elementor_template_type','wp-page'),(1411,2180,'_elementor_version','3.9.0'),(1412,2181,'_elementor_edit_mode','builder'),(1413,2181,'_elementor_template_type','wp-page'),(1414,2181,'_elementor_version','3.9.0'),(1415,2162,'_wp_page_template','default'),(1416,2162,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#FFFAF7\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}],\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2431,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/101.png\",\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}],\"image_custom_dimension\":{\"width\":\"1200\",\"height\":\"355\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":774,\"sizes\":[]},\"background_background\":\"classic\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}],\"z_index\":1},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"align\":\"center\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.12)\"}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Price: [custom_query_paramter paramter_type=\'price\']<\\/p>\",\"text_color\":\"#000000C7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"47e7cf3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"35c59a1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"fbc4451\"}],\"shape_divider_top\":\"triangle\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":145,\"sizes\":[]},\"shape_divider_top_negative\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":0,\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"00eb539\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f8703a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(1417,2182,'_elementor_edit_mode','builder'),(1418,2182,'_elementor_template_type','wp-page'),(1419,2182,'_elementor_version','3.9.0'),(1420,2182,'_wp_page_template','default'),(1421,2182,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are glad that you have considered our <strong>subscription management and payment processing platform<\\/strong> to manage your subscription business operations.<\\/p><p>Thank you for requesting more information. We will get back to you shortly with details.<br \\/><br \\/><\\/p>\",\"align\":\"center\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1422,2162,'_elementor_page_assets','a:0:{}'),(1423,2183,'_elementor_edit_mode','builder'),(1424,2183,'_elementor_template_type','wp-page'),(1425,2183,'_elementor_version','3.9.0'),(1426,2183,'_wp_page_template','default'),(1427,2183,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are glad that you have considered our <strong>subscription management and payment processing platform<\\/strong> to manage your subscription business operations.<\\/p><p>Thank you for requesting more information. We will get back to you shortly with details.<br \\/><br \\/><\\/p>\",\"align\":\"center\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1428,2183,'_elementor_page_assets','a:0:{}'),(1429,2184,'_elementor_edit_mode','builder'),(1430,2184,'_elementor_template_type','wp-page'),(1431,2184,'_elementor_version','3.9.0'),(1432,2184,'_wp_page_template','default'),(1433,2184,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are glad that you have considered our <strong>subscription management and payment processing platform<\\/strong> to manage your subscription business operations.<\\/p><p>Thank you for requesting more information. We will get back to you shortly with details.<br \\/><br \\/><\\/p>\",\"align\":\"center\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1434,2184,'_elementor_page_assets','a:0:{}'),(1435,2185,'_elementor_edit_mode','builder'),(1436,2185,'_elementor_template_type','wp-page'),(1437,2185,'_elementor_version','3.9.0'),(1438,2185,'_wp_page_template','default'),(1439,2185,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are glad that you have considered our <strong>subscription management and payment processing platform<\\/strong> to manage your subscription business operations.<\\/p><p>Thank you for requesting more information. We will get back to you shortly with details.<br \\/><br \\/><\\/p>\",\"align\":\"center\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1440,2185,'_elementor_page_assets','a:0:{}'),(1441,2162,'_edit_last','1'),(1442,2186,'_elementor_edit_mode','builder'),(1443,2186,'_elementor_template_type','wp-page'),(1444,2186,'_elementor_version','3.9.0'),(1445,2186,'_wp_page_template','default'),(1446,2186,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are glad that you have considered our <strong>subscription management and payment processing platform<\\/strong> to manage your subscription business operations.<\\/p><p>Thank you for requesting more information. We will get back to you shortly with details.<br \\/><br \\/><\\/p>\",\"align\":\"center\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1447,2186,'_elementor_page_assets','a:0:{}'),(1449,2187,'_elementor_edit_mode','builder'),(1450,2187,'_elementor_template_type','wp-page'),(1451,2187,'_elementor_version','3.9.0'),(1452,2187,'_wp_page_template','default'),(1453,2187,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are glad that you have considered our <strong>subscription management and payment processing platform<\\/strong> to manage your subscription business operations.<\\/p><p>Thank you for requesting more information. We will get back to you shortly with details.<br \\/><br \\/><\\/p>\",\"align\":\"center\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1454,2187,'_elementor_page_assets','a:0:{}'),(1456,2188,'_elementor_edit_mode','builder'),(1457,2188,'_elementor_template_type','wp-page'),(1458,2188,'_elementor_version','3.9.0'),(1459,2188,'_wp_page_template','default'),(1460,2188,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are glad that you have considered our <strong>subscription management and payment processing platform<\\/strong> to manage your subscription business operations.<\\/p><p>Thank you for requesting more information. We will get back to you shortly with details.<br \\/><br \\/><\\/p>\",\"align\":\"center\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1461,2188,'_elementor_page_assets','a:0:{}'),(1463,2189,'_elementor_edit_mode','builder'),(1464,2189,'_elementor_template_type','wp-page'),(1465,2189,'_elementor_version','3.9.0'),(1466,2189,'_wp_page_template','default'),(1467,2189,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are glad that you have considered our <strong>subscription management and payment processing platform<\\/strong> to manage your subscription business operations.<\\/p><p>Thank you for requesting more information. We will get back to you shortly with details.<br \\/><br \\/><\\/p>\",\"align\":\"center\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1468,2189,'_elementor_page_assets','a:0:{}'),(1471,2190,'_elementor_edit_mode','builder'),(1472,2190,'_elementor_template_type','wp-page'),(1473,2190,'_elementor_version','3.9.0'),(1474,2190,'_wp_page_template','default'),(1475,2190,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are glad that you have considered our <strong>subscription management and payment processing platform<\\/strong> to manage your subscription business operations.<\\/p><p>Thank you for requesting more information. We will get back to you shortly with details.<br \\/><br \\/><\\/p>\",\"align\":\"center\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1476,2190,'_elementor_page_assets','a:0:{}'),(1478,2191,'_elementor_edit_mode','builder'),(1479,2191,'_elementor_template_type','wp-page'),(1480,2191,'_elementor_version','3.9.0'),(1481,2191,'_wp_page_template','default'),(1482,2191,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are glad that you have considered our <strong>subscription management and payment processing platform<\\/strong> to manage your subscription business operations.<\\/p><p>Thank you for requesting more information. We will get back to you shortly with details.<br \\/><br \\/><\\/p>\",\"align\":\"center\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1483,2191,'_elementor_page_assets','a:0:{}'),(1485,2192,'_elementor_edit_mode','builder'),(1486,2192,'_elementor_template_type','wp-page'),(1487,2192,'_elementor_version','3.9.0'),(1488,2192,'_wp_page_template','default'),(1489,2192,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [Customer_id] [Customer_name]<\\/p><p>Email: [Customer_email]<\\/p><p>Product Name: \\u00a0[Product_name] Plan Name: [Plan_name]<br \\/>Plan Price: [Price]<\\/p>\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1490,2192,'_elementor_page_assets','a:0:{}'),(1502,2194,'_elementor_edit_mode','builder'),(1503,2194,'_elementor_template_type','wp-page'),(1504,2194,'_elementor_version','3.9.0'),(1505,2194,'_wp_page_template','default'),(1506,2194,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [Customer_id] [Customer_name]<\\/p><p>Email: [Customer_email]<\\/p><p>Product Name: \\u00a0[Product_name] Plan Name: [Plan_name]<br \\/>Plan Price: [Price]<\\/p>\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1507,2194,'_elementor_page_assets','a:0:{}'),(1509,2195,'_elementor_edit_mode','builder'),(1510,2195,'_elementor_template_type','wp-page'),(1511,2195,'_elementor_version','3.9.0'),(1512,2195,'_wp_page_template','default'),(1513,2195,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [Customer_id] [Customer_name]<\\/p><p>Email: [Customer_email]<\\/p><p>Product Name: \\u00a0[Product_name] Plan Name: [Plan_name]<br \\/>Plan Price: [Price]<\\/p>\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1514,2195,'_elementor_page_assets','a:0:{}'),(1516,2196,'_elementor_edit_mode','builder'),(1517,2196,'_elementor_template_type','wp-page'),(1518,2196,'_elementor_version','3.9.0'),(1519,2196,'_wp_page_template','default'),(1520,2196,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"ef970d5\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[customer_name]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [Customer_id] [Customer_name]<\\/p><p>Email: [Customer_email]<\\/p><p>Product Name: \\u00a0[Product_name] Plan Name: [Plan_name]<br \\/>Plan Price: [Price]<\\/p>\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1521,2196,'_elementor_page_assets','a:0:{}'),(1524,2197,'_elementor_edit_mode','builder'),(1525,2197,'_elementor_template_type','wp-page'),(1526,2197,'_elementor_version','3.9.0'),(1527,2197,'_wp_page_template','default'),(1528,2197,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"ef970d5\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[customer_name]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [Customer_id] [Customer_name]<\\/p><p>Email: [Customer_email]<\\/p><p>Product Name: \\u00a0[Product_name] Plan Name: [Plan_name]<br \\/>Plan Price: [Price]<\\/p>\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1529,2197,'_elementor_page_assets','a:0:{}'),(1531,2198,'_elementor_edit_mode','builder'),(1532,2198,'_elementor_template_type','wp-page'),(1533,2198,'_elementor_version','3.9.0'),(1534,2198,'_wp_page_template','default'),(1535,2198,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"ef970d5\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[customer_name]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [Customer_id] [Customer_name]<\\/p><p>Email: [Customer_email]<\\/p><p>Product Name: \\u00a0[Product_name] Plan Name: [Plan_name]<br \\/>Plan Price: [Price]<\\/p>\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1536,2198,'_elementor_page_assets','a:0:{}'),(1538,2199,'_elementor_edit_mode','builder'),(1539,2199,'_elementor_template_type','wp-page'),(1540,2199,'_elementor_version','3.9.0'),(1541,2199,'_wp_page_template','default'),(1542,2199,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"ef970d5\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"customer_name\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [Customer_id] [Customer_name]<\\/p><p>Email: [Customer_email]<\\/p><p>Product Name: \\u00a0[Product_name] Plan Name: [Plan_name]<br \\/>Plan Price: [Price]<\\/p>\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1543,2199,'_elementor_page_assets','a:0:{}'),(1546,2200,'_elementor_edit_mode','builder'),(1547,2200,'_elementor_template_type','wp-page'),(1548,2200,'_elementor_version','3.9.0'),(1549,2200,'_wp_page_template','default'),(1550,2200,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"ef970d5\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"customer_name\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [Customer_id] [Customer_name]<\\/p><p>Email: [Customer_email]<\\/p><p>Product Name: \\u00a0[Product_name] Plan Name: [Plan_name]<br \\/>Plan Price: [Price]<\\/p>\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1551,2200,'_elementor_page_assets','a:0:{}'),(1553,2201,'_elementor_edit_mode','builder'),(1554,2201,'_elementor_template_type','wp-page'),(1555,2201,'_elementor_version','3.9.0'),(1556,2201,'_wp_page_template','default'),(1557,2201,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"ef970d5\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"customer_name\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [Customer_id] [Customer_name]<\\/p><p>Email: [Customer_email]<\\/p><p>Product Name: \\u00a0[Product_name] Plan Name: [Plan_name]<br \\/>Plan Price: [Price]<\\/p>\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1558,2201,'_elementor_page_assets','a:0:{}'),(1560,2202,'_elementor_edit_mode','builder'),(1561,2202,'_elementor_template_type','wp-page'),(1562,2202,'_elementor_version','3.9.0'),(1563,2202,'_wp_page_template','default'),(1564,2202,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"ef970d5\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[customer_nam\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"7ae1505\",\"elType\":\"widget\",\"settings\":{\"html\":\"customer_name\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [Customer_id] [Customer_name]<\\/p><p>Email: [Customer_email]<\\/p><p>Product Name: \\u00a0[Product_name] Plan Name: [Plan_name]<br \\/>Plan Price: [Price]<\\/p>\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1565,2202,'_elementor_page_assets','a:0:{}'),(1568,2203,'_elementor_edit_mode','builder'),(1569,2203,'_elementor_template_type','wp-page'),(1570,2203,'_elementor_version','3.9.0'),(1571,2203,'_wp_page_template','default'),(1572,2203,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"ef970d5\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[customer_nam\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"7ae1505\",\"elType\":\"widget\",\"settings\":{\"html\":\"customer_name\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [Customer_id] [Customer_name]<\\/p><p>Email: [Customer_email]<\\/p><p>Product Name: \\u00a0[Product_name] Plan Name: [Plan_name]<br \\/>Plan Price: [Price]<\\/p>\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1573,2203,'_elementor_page_assets','a:0:{}'),(1575,2204,'_elementor_edit_mode','builder'),(1576,2204,'_elementor_template_type','wp-page'),(1577,2204,'_elementor_version','3.9.0'),(1578,2204,'_wp_page_template','default'),(1579,2204,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"ef970d5\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[customer_nam\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"7ae1505\",\"elType\":\"widget\",\"settings\":{\"html\":\"customer_name\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [Customer_id] [Customer_name]<\\/p><p>Email: [Customer_email]<\\/p><p>Product Name: \\u00a0[Product_name] Plan Name: [Plan_name]<br \\/>Plan Price: [Price]<\\/p>\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1580,2204,'_elementor_page_assets','a:0:{}'),(1582,2205,'_elementor_edit_mode','builder'),(1583,2205,'_elementor_template_type','wp-page'),(1584,2205,'_elementor_version','3.9.0'),(1585,2205,'_wp_page_template','default'),(1586,2205,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"7ae1505\",\"elType\":\"widget\",\"settings\":{\"html\":\"Name: [customer_name]\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [Customer_id] [Customer_name]<\\/p><p>Email: [Customer_email]<\\/p><p>Product Name: \\u00a0[Product_name] Plan Name: [Plan_name]<br \\/>Plan Price: [Price]<\\/p>\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1587,2205,'_elementor_page_assets','a:0:{}'),(1590,2206,'_elementor_edit_mode','builder'),(1591,2206,'_elementor_template_type','wp-page'),(1592,2206,'_elementor_version','3.9.0'),(1593,2206,'_wp_page_template','default'),(1594,2206,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"7ae1505\",\"elType\":\"widget\",\"settings\":{\"html\":\"Name: [customer_name]\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [Customer_id] [Customer_name]<\\/p><p>Email: [Customer_email]<\\/p><p>Product Name: \\u00a0[Product_name] Plan Name: [Plan_name]<br \\/>Plan Price: [Price]<\\/p>\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1595,2206,'_elementor_page_assets','a:0:{}'),(1597,2207,'_elementor_edit_mode','builder'),(1598,2207,'_elementor_template_type','wp-page'),(1599,2207,'_elementor_version','3.9.0'),(1600,2207,'_wp_page_template','default'),(1601,2207,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"7ae1505\",\"elType\":\"widget\",\"settings\":{\"html\":\"Name: [customer_name]\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [Customer_id] [Customer_name]<\\/p><p>Email: [Customer_email]<\\/p><p>Product Name: \\u00a0[Product_name] Plan Name: [Plan_name]<br \\/>Plan Price: [Price]<\\/p>\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1602,2207,'_elementor_page_assets','a:0:{}'),(1604,2208,'_elementor_edit_mode','builder'),(1605,2208,'_elementor_template_type','wp-page'),(1606,2208,'_elementor_version','3.9.0'),(1607,2208,'_wp_page_template','default'),(1608,2208,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"8ee5ca6\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[custom_query_paramter paramter_type=\\\"name\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [Customer_id] [Customer_name]<\\/p><p>Email: [Customer_email]<\\/p><p>Product Name: \\u00a0[Product_name] Plan Name: [Plan_name]<br \\/>Plan Price: [Price]<\\/p>\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1609,2208,'_elementor_page_assets','a:0:{}'),(1612,2209,'_elementor_edit_mode','builder'),(1613,2209,'_elementor_template_type','wp-page'),(1614,2209,'_elementor_version','3.9.0'),(1615,2209,'_wp_page_template','default'),(1616,2209,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"8ee5ca6\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[custom_query_paramter paramter_type=\\\"name\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [Customer_id] [Customer_name]<\\/p><p>Email: [Customer_email]<\\/p><p>Product Name: \\u00a0[Product_name] Plan Name: [Plan_name]<br \\/>Plan Price: [Price]<\\/p>\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1617,2209,'_elementor_page_assets','a:0:{}'),(1619,2210,'_elementor_edit_mode','builder'),(1620,2210,'_elementor_template_type','wp-page'),(1621,2210,'_elementor_version','3.9.0'),(1622,2210,'_wp_page_template','default'),(1623,2210,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"8ee5ca6\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[custom_query_paramter paramter_type=\\\"name\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [Customer_id] [Customer_name]<\\/p><p>Email: [Customer_email]<\\/p><p>Product Name: \\u00a0[Product_name] Plan Name: [Plan_name]<br \\/>Plan Price: [Price]<\\/p>\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1624,2210,'_elementor_page_assets','a:0:{}'),(1626,2211,'_elementor_edit_mode','builder'),(1627,2211,'_elementor_template_type','wp-page'),(1628,2211,'_elementor_version','3.9.0'),(1629,2211,'_wp_page_template','default'),(1630,2211,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"8ee5ca6\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[custom_query_paramter paramter_type=\\\"name\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[custom_query_paramter paramter_type=\\\"name\\\"]<\\/p>\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1631,2211,'_elementor_page_assets','a:0:{}'),(1634,2212,'_elementor_edit_mode','builder'),(1635,2212,'_elementor_template_type','wp-page'),(1636,2212,'_elementor_version','3.9.0'),(1637,2212,'_wp_page_template','default'),(1638,2212,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"8ee5ca6\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[custom_query_paramter paramter_type=\\\"name\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[custom_query_paramter paramter_type=\\\"name\\\"]<\\/p>\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1639,2212,'_elementor_page_assets','a:0:{}'),(1641,2213,'_elementor_edit_mode','builder'),(1642,2213,'_elementor_template_type','wp-page'),(1643,2213,'_elementor_version','3.9.0'),(1644,2213,'_wp_page_template','default'),(1645,2213,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"8ee5ca6\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[custom_query_paramter paramter_type=\\\"name\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[custom_query_paramter paramter_type=\\\"name\\\"]<\\/p>\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1646,2213,'_elementor_page_assets','a:0:{}'),(1648,2214,'_elementor_edit_mode','builder'),(1649,2214,'_elementor_template_type','wp-page'),(1650,2214,'_elementor_version','3.9.0'),(1651,2214,'_wp_page_template','default'),(1652,2214,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1653,2214,'_elementor_page_assets','a:0:{}'),(1656,2215,'_elementor_edit_mode','builder'),(1657,2215,'_elementor_template_type','wp-page'),(1658,2215,'_elementor_version','3.9.0'),(1659,2215,'_wp_page_template','default'),(1660,2215,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1661,2215,'_elementor_page_assets','a:0:{}'),(1663,2216,'_elementor_edit_mode','builder'),(1664,2216,'_elementor_template_type','wp-page'),(1665,2216,'_elementor_version','3.9.0'),(1666,2216,'_wp_page_template','default'),(1667,2216,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1668,2216,'_elementor_page_assets','a:0:{}'),(1670,2217,'_elementor_edit_mode','builder'),(1671,2217,'_elementor_template_type','wp-page'),(1672,2217,'_elementor_version','3.9.0'),(1673,2217,'_wp_page_template','default'),(1674,2217,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dfb4dee\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[custom_query_paramter paramter_type=\'name\']\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1675,2217,'_elementor_page_assets','a:0:{}'),(1678,2218,'_elementor_edit_mode','builder'),(1679,2218,'_elementor_template_type','wp-page'),(1680,2218,'_elementor_version','3.9.0'),(1681,2218,'_wp_page_template','default'),(1682,2218,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dfb4dee\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[custom_query_paramter paramter_type=\'name\']\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1683,2218,'_elementor_page_assets','a:0:{}'),(1685,2219,'_elementor_edit_mode','builder'),(1686,2219,'_elementor_template_type','wp-page'),(1687,2219,'_elementor_version','3.9.0'),(1688,2219,'_wp_page_template','default'),(1689,2219,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dfb4dee\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[custom_query_paramter paramter_type=\'name\']\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1690,2219,'_elementor_page_assets','a:0:{}'),(1692,2220,'_elementor_edit_mode','builder'),(1693,2220,'_elementor_template_type','wp-page'),(1694,2220,'_elementor_version','3.9.0'),(1695,2220,'_wp_page_template','default'),(1696,2220,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dfb4dee\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Name: [custom_query_paramter paramter_type=\'name\']\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1697,2220,'_elementor_page_assets','a:0:{}'),(1707,2222,'_elementor_edit_mode','builder'),(1708,2222,'_elementor_template_type','wp-page'),(1709,2222,'_elementor_version','3.9.0'),(1710,2222,'_wp_page_template','default'),(1711,2222,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dfb4dee\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Name: [custom_query_paramter paramter_type=\'name\']\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1712,2222,'_elementor_page_assets','a:0:{}'),(1713,2223,'_elementor_edit_mode','builder'),(1714,2223,'_elementor_template_type','wp-page'),(1715,2223,'_elementor_version','3.9.0'),(1716,2223,'_wp_page_template','default'),(1717,2223,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dfb4dee\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Name: [custom_query_paramter paramter_type=\'name\']\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1718,2223,'_elementor_page_assets','a:0:{}'),(1719,2224,'_elementor_edit_mode','builder'),(1720,2224,'_elementor_template_type','wp-page'),(1721,2224,'_elementor_version','3.9.0'),(1722,2224,'_wp_page_template','default'),(1723,2224,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Name: [custom_query_paramter paramter_type=\'name\']\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfb4dee\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Name: [custom_query_paramter paramter_type=\'name\']\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1724,2224,'_elementor_page_assets','a:0:{}'),(1726,2225,'_elementor_edit_mode','builder'),(1727,2225,'_elementor_template_type','wp-page'),(1728,2225,'_elementor_version','3.9.0'),(1729,2225,'_wp_page_template','default'),(1730,2225,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Name: [custom_query_paramter paramter_type=\'name\']\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfb4dee\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Name: [custom_query_paramter paramter_type=\'name\']\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1731,2225,'_elementor_page_assets','a:0:{}'),(1733,2226,'_elementor_edit_mode','builder'),(1734,2226,'_elementor_template_type','wp-page'),(1735,2226,'_elementor_version','3.9.0'),(1736,2226,'_wp_page_template','default'),(1737,2226,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Name: [custom_query_paramter paramter_type=\'name\']\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfb4dee\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Name: [custom_query_paramter paramter_type=\'name\']\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1738,2226,'_elementor_page_assets','a:0:{}'),(1740,2227,'_elementor_edit_mode','builder'),(1741,2227,'_elementor_template_type','wp-page'),(1742,2227,'_elementor_version','3.9.0'),(1743,2227,'_wp_page_template','default'),(1744,2227,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'pl-name\']<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1745,2227,'_elementor_page_assets','a:0:{}'),(1748,2228,'_elementor_edit_mode','builder'),(1749,2228,'_elementor_template_type','wp-page'),(1750,2228,'_elementor_version','3.9.0'),(1751,2228,'_wp_page_template','default'),(1752,2228,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'pl-name\']<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1753,2228,'_elementor_page_assets','a:0:{}'),(1755,2229,'_elementor_edit_mode','builder'),(1756,2229,'_elementor_template_type','wp-page'),(1757,2229,'_elementor_version','3.9.0'),(1758,2229,'_wp_page_template','default'),(1759,2229,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'pl-name\']<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1760,2229,'_elementor_page_assets','a:0:{}'),(1762,2230,'_elementor_edit_mode','builder'),(1763,2230,'_elementor_template_type','wp-page'),(1764,2230,'_elementor_version','3.9.0'),(1765,2230,'_wp_page_template','default'),(1766,2230,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1767,2230,'_elementor_page_assets','a:0:{}'),(1770,2231,'_elementor_edit_mode','builder'),(1771,2231,'_elementor_template_type','wp-page'),(1772,2231,'_elementor_version','3.9.0'),(1773,2231,'_wp_page_template','default'),(1774,2231,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1775,2231,'_elementor_page_assets','a:0:{}'),(1777,2232,'_elementor_edit_mode','builder'),(1778,2232,'_elementor_template_type','wp-page'),(1779,2232,'_elementor_version','3.9.0'),(1780,2232,'_wp_page_template','default'),(1781,2232,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1782,2232,'_elementor_page_assets','a:0:{}'),(1784,2233,'_elementor_edit_mode','builder'),(1785,2233,'_elementor_template_type','wp-page'),(1786,2233,'_elementor_version','3.9.0'),(1787,2233,'_wp_page_template','default'),(1788,2233,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":774,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p>\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1789,2233,'_elementor_page_assets','a:0:{}'),(1791,2234,'_elementor_edit_mode','builder'),(1792,2234,'_elementor_template_type','wp-page'),(1793,2234,'_elementor_version','3.9.0'),(1794,2234,'_wp_page_template','default'),(1795,2234,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":774,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p>\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1796,2234,'_elementor_page_assets','a:0:{}'),(1797,2235,'_elementor_edit_mode','builder'),(1798,2235,'_elementor_template_type','wp-page'),(1799,2235,'_elementor_version','3.9.0'),(1800,2235,'_wp_page_template','default'),(1801,2235,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":774,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p>\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1802,2235,'_elementor_page_assets','a:0:{}'),(1803,2236,'_elementor_edit_mode','builder'),(1804,2236,'_elementor_template_type','wp-page'),(1805,2236,'_elementor_version','3.9.0'),(1806,2236,'_wp_page_template','default'),(1807,2236,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":774,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1808,2236,'_elementor_page_assets','a:0:{}'),(1810,2237,'_elementor_edit_mode','builder'),(1811,2237,'_elementor_template_type','wp-page'),(1812,2237,'_elementor_version','3.9.0'),(1813,2237,'_wp_page_template','default'),(1814,2237,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":774,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1815,2237,'_elementor_page_assets','a:0:{}'),(1817,2238,'_elementor_edit_mode','builder'),(1818,2238,'_elementor_template_type','wp-page'),(1819,2238,'_elementor_version','3.9.0'),(1820,2238,'_wp_page_template','default'),(1821,2238,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":774,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1822,2238,'_elementor_page_assets','a:0:{}'),(1824,2239,'_elementor_edit_mode','builder'),(1825,2239,'_elementor_template_type','wp-page'),(1826,2239,'_elementor_version','3.9.0'),(1827,2239,'_wp_page_template','default'),(1828,2239,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":774,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p>\",\"text_color\":\"#000000C7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1829,2239,'_elementor_page_assets','a:0:{}'),(1832,2240,'_elementor_edit_mode','builder'),(1833,2240,'_elementor_template_type','wp-page'),(1834,2240,'_elementor_version','3.9.0'),(1835,2240,'_wp_page_template','default'),(1836,2240,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":774,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p>\",\"text_color\":\"#000000C7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1837,2240,'_elementor_page_assets','a:0:{}'),(1839,2241,'_elementor_edit_mode','builder'),(1840,2241,'_elementor_template_type','wp-page'),(1841,2241,'_elementor_version','3.9.0'),(1842,2241,'_wp_page_template','default'),(1843,2241,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":774,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p>\",\"text_color\":\"#000000C7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1844,2241,'_elementor_page_assets','a:0:{}'),(1846,2242,'_elementor_edit_mode','builder'),(1847,2242,'_elementor_template_type','wp-page'),(1848,2242,'_elementor_version','3.9.0'),(1849,2242,'_wp_page_template','default'),(1850,2242,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":774,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Price: [custom_query_paramter paramter_type=\'price\']<\\/p>\",\"text_color\":\"#000000C7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1851,2242,'_elementor_page_assets','a:0:{}'),(1854,2162,'wc_sf_hide_cart_button',''),(1855,2243,'_elementor_edit_mode','builder'),(1856,2243,'_elementor_template_type','wp-page'),(1857,2243,'_elementor_version','3.9.0'),(1858,2243,'_wp_page_template','default'),(1859,2243,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":774,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Price: [custom_query_paramter paramter_type=\'price\']<\\/p>\",\"text_color\":\"#000000C7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1860,2243,'_elementor_page_assets','a:0:{}'),(1869,2245,'_elementor_edit_mode','builder'),(1870,2245,'_elementor_template_type','wp-page'),(1871,2245,'_elementor_version','3.8.1'),(1872,2245,'_wp_page_template','elementor_canvas'),(1873,2245,'_elementor_data','[{\"id\":\"638551d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"10f834f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"e37e7f2\"}],\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0},\"elements\":[{\"id\":\"a808755\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4069cc7\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"b849f95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"df56f06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sale Products\",\"align\":\"center\",\"title_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec00d4f\",\"elType\":\"widget\",\"settings\":{\"query_not_found_text\":\"No Posts Found!\",\"layout_filters\":\"\",\"layout_pagination\":\"\",\"grid_elements\":[{\"_id\":\"e49138e\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"d8ef0e7\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"add-to-cart\",\"_id\":\"33d399d\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\",\"query_posts_per_page\":6,\"layout_gutter_vr\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color_hr\":\"#333333\",\"title_transition_duration\":0.5,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"categories_color_hr\":\"#CD98CC\",\"categories_typography_typography\":\"custom\",\"categories_typography_font_family\":\"Poppins\",\"categories_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"categories_typography_font_weight\":\"400\",\"product_status_os_bg_color\":\"#FF4F40\",\"product_status_typography_typography\":\"custom\",\"product_status_typography_font_family\":\"Poppins\",\"product_status_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"product_status_typography_font_weight\":\"400\",\"product_status_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"product_status_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"product_status_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"product_price_color\":\"#FF4F40\",\"product_price_old_color\":\"#FF7E73\",\"product_price_typography_typography\":\"custom\",\"product_price_typography_font_family\":\"Poppins\",\"product_price_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"product_price_typography_font_weight\":\"400\",\"add_to_cart_border_color\":\"#FF4F40\",\"add_to_cart_color_hr\":\"#FFFFFF\",\"add_to_cart_bg_color_hr\":\"#FF4F40\",\"add_to_cart_border_color_hr\":\"#FF4F40\",\"add_to_cart_transition_duration\":0.3,\"add_to_cart_typography_typography\":\"custom\",\"add_to_cart_typography_font_family\":\"Poppins\",\"add_to_cart_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"add_to_cart_typography_font_weight\":\"400\",\"add_to_cart_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"add_to_cart_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"30\",\"bottom\":\"8\",\"left\":\"30\",\"isLinked\":false},\"add_to_cart_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"product_price_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"cross_sell_heading\":\"You may be interested in...\",\"upsell_heading\":\"You may also like...\",\"sort_heading\":\"Shop\",\"sort_and_results_count\":\"\",\"product_rating_color\":\"#FF4F40\",\"product_rating_score_color\":\"#FF4F40\",\"product_status_ft_bg_color\":\"#FF4F40\",\"layout_columns_tablet\":\"2\",\"sort_and_results_count_tablet\":\"\",\"sort_and_results_count_mobile\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"product_price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"add_to_cart_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"add_to_cart_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"25\",\"bottom\":\"7\",\"left\":\"25\",\"isLinked\":false},\"lightbox_typography_font_family\":\"Roboto\",\"lightbox_typography_font_size\":{\"unit\":\"px\",\"size\":88,\"sizes\":[]},\"lightbox_typography_font_weight\":\"400\",\"sort_title_color\":\"#FFFFFF\",\"results_color\":\"#FFFFFF\",\"sorting_color\":\"#2D2D2D\",\"grid_linked_products_heading\":\"You may be interested in...\",\"query_manual_products\":[\"53\",\"83\",\"364\",\"404\",\"407\",\"409\"]},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(1874,2245,'_elementor_page_assets','a:0:{}'),(1875,2246,'_elementor_edit_mode','builder'),(1876,2246,'_elementor_template_type','wp-page'),(1877,2246,'_elementor_version','3.8.1'),(1878,2246,'_wp_page_template','elementor_canvas'),(1879,2246,'_elementor_data','[{\"id\":\"638551d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"10f834f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"e37e7f2\"}],\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0},\"elements\":[{\"id\":\"a808755\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4069cc7\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"b849f95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"df56f06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sale Products\",\"align\":\"center\",\"title_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec00d4f\",\"elType\":\"widget\",\"settings\":{\"query_not_found_text\":\"No Posts Found!\",\"layout_filters\":\"\",\"layout_pagination\":\"\",\"grid_elements\":[{\"_id\":\"e49138e\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"d8ef0e7\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"add-to-cart\",\"_id\":\"33d399d\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\",\"query_posts_per_page\":6,\"layout_gutter_vr\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color_hr\":\"#333333\",\"title_transition_duration\":0.5,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"categories_color_hr\":\"#CD98CC\",\"categories_typography_typography\":\"custom\",\"categories_typography_font_family\":\"Poppins\",\"categories_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"categories_typography_font_weight\":\"400\",\"product_status_os_bg_color\":\"#FF4F40\",\"product_status_typography_typography\":\"custom\",\"product_status_typography_font_family\":\"Poppins\",\"product_status_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"product_status_typography_font_weight\":\"400\",\"product_status_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"product_status_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"product_status_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"product_price_color\":\"#FF4F40\",\"product_price_old_color\":\"#FF7E73\",\"product_price_typography_typography\":\"custom\",\"product_price_typography_font_family\":\"Poppins\",\"product_price_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"product_price_typography_font_weight\":\"400\",\"add_to_cart_border_color\":\"#FF4F40\",\"add_to_cart_color_hr\":\"#FFFFFF\",\"add_to_cart_bg_color_hr\":\"#FF4F40\",\"add_to_cart_border_color_hr\":\"#FF4F40\",\"add_to_cart_transition_duration\":0.3,\"add_to_cart_typography_typography\":\"custom\",\"add_to_cart_typography_font_family\":\"Poppins\",\"add_to_cart_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"add_to_cart_typography_font_weight\":\"400\",\"add_to_cart_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"add_to_cart_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"30\",\"bottom\":\"8\",\"left\":\"30\",\"isLinked\":false},\"add_to_cart_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"product_price_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"cross_sell_heading\":\"You may be interested in...\",\"upsell_heading\":\"You may also like...\",\"sort_heading\":\"Shop\",\"sort_and_results_count\":\"\",\"product_rating_color\":\"#FF4F40\",\"product_rating_score_color\":\"#FF4F40\",\"product_status_ft_bg_color\":\"#FF4F40\",\"layout_columns_tablet\":\"2\",\"sort_and_results_count_tablet\":\"\",\"sort_and_results_count_mobile\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"product_price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"add_to_cart_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"add_to_cart_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"25\",\"bottom\":\"7\",\"left\":\"25\",\"isLinked\":false},\"lightbox_typography_font_family\":\"Roboto\",\"lightbox_typography_font_size\":{\"unit\":\"px\",\"size\":88,\"sizes\":[]},\"lightbox_typography_font_weight\":\"400\",\"sort_title_color\":\"#FFFFFF\",\"results_color\":\"#FFFFFF\",\"sorting_color\":\"#2D2D2D\",\"grid_linked_products_heading\":\"You may be interested in...\",\"query_manual_products\":[\"53\",\"83\",\"364\",\"404\",\"407\",\"409\"]},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(1880,2246,'_elementor_page_assets','a:0:{}'),(1881,2247,'_elementor_edit_mode','builder'),(1882,2247,'_elementor_template_type','wp-page'),(1883,2247,'_elementor_version','3.8.1'),(1884,2247,'_wp_page_template','elementor_canvas'),(1885,2247,'_elementor_data','[{\"id\":\"638551d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"10f834f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"e37e7f2\"}],\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0},\"elements\":[{\"id\":\"a808755\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}]},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4069cc7\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"b849f95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"df56f06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sale Products\",\"align\":\"center\",\"title_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec00d4f\",\"elType\":\"widget\",\"settings\":{\"query_not_found_text\":\"No Posts Found!\",\"layout_filters\":\"\",\"layout_pagination\":\"\",\"grid_elements\":[{\"_id\":\"e49138e\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"d8ef0e7\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"add-to-cart\",\"_id\":\"33d399d\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\",\"query_posts_per_page\":6,\"layout_gutter_vr\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color_hr\":\"#333333\",\"title_transition_duration\":0.5,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"categories_color_hr\":\"#CD98CC\",\"categories_typography_typography\":\"custom\",\"categories_typography_font_family\":\"Poppins\",\"categories_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"categories_typography_font_weight\":\"400\",\"product_status_os_bg_color\":\"#FF4F40\",\"product_status_typography_typography\":\"custom\",\"product_status_typography_font_family\":\"Poppins\",\"product_status_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"product_status_typography_font_weight\":\"400\",\"product_status_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"product_status_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"product_status_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"product_price_color\":\"#FF4F40\",\"product_price_old_color\":\"#FF7E73\",\"product_price_typography_typography\":\"custom\",\"product_price_typography_font_family\":\"Poppins\",\"product_price_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"product_price_typography_font_weight\":\"400\",\"add_to_cart_border_color\":\"#FF4F40\",\"add_to_cart_color_hr\":\"#FFFFFF\",\"add_to_cart_bg_color_hr\":\"#FF4F40\",\"add_to_cart_border_color_hr\":\"#FF4F40\",\"add_to_cart_transition_duration\":0.3,\"add_to_cart_typography_typography\":\"custom\",\"add_to_cart_typography_font_family\":\"Poppins\",\"add_to_cart_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"add_to_cart_typography_font_weight\":\"400\",\"add_to_cart_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"add_to_cart_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"30\",\"bottom\":\"8\",\"left\":\"30\",\"isLinked\":false},\"add_to_cart_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"product_price_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"cross_sell_heading\":\"You may be interested in...\",\"upsell_heading\":\"You may also like...\",\"sort_heading\":\"Shop\",\"sort_and_results_count\":\"\",\"product_rating_color\":\"#FF4F40\",\"product_rating_score_color\":\"#FF4F40\",\"product_status_ft_bg_color\":\"#FF4F40\",\"layout_columns_tablet\":\"2\",\"sort_and_results_count_tablet\":\"\",\"sort_and_results_count_mobile\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"product_price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"add_to_cart_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"add_to_cart_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"25\",\"bottom\":\"7\",\"left\":\"25\",\"isLinked\":false},\"lightbox_typography_font_family\":\"Roboto\",\"lightbox_typography_font_size\":{\"unit\":\"px\",\"size\":88,\"sizes\":[]},\"lightbox_typography_font_weight\":\"400\",\"sort_title_color\":\"#FFFFFF\",\"results_color\":\"#FFFFFF\",\"sorting_color\":\"#2D2D2D\",\"grid_linked_products_heading\":\"You may be interested in...\",\"query_manual_products\":[\"53\",\"83\",\"364\",\"404\",\"407\",\"409\"]},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(1886,2247,'_elementor_page_assets','a:0:{}'),(1895,2249,'_elementor_edit_mode','builder'),(1896,2249,'_elementor_template_type','wp-page'),(1897,2249,'_elementor_version','3.9.0'),(1898,2249,'_wp_page_template','elementor_canvas'),(1899,2249,'_elementor_data','[{\"id\":\"638551d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"10f834f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"e37e7f2\"}],\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0},\"elements\":[{\"id\":\"a808755\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}]},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4069cc7\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"b849f95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"df56f06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sale Products\",\"align\":\"center\",\"title_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec00d4f\",\"elType\":\"widget\",\"settings\":{\"query_not_found_text\":\"No Posts Found!\",\"layout_filters\":\"\",\"layout_pagination\":\"\",\"grid_elements\":[{\"_id\":\"e49138e\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"d8ef0e7\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"add-to-cart\",\"_id\":\"33d399d\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\",\"query_posts_per_page\":6,\"layout_gutter_vr\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color_hr\":\"#333333\",\"title_transition_duration\":0.5,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"categories_color_hr\":\"#CD98CC\",\"categories_typography_typography\":\"custom\",\"categories_typography_font_family\":\"Poppins\",\"categories_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"categories_typography_font_weight\":\"400\",\"product_status_os_bg_color\":\"#FF4F40\",\"product_status_typography_typography\":\"custom\",\"product_status_typography_font_family\":\"Poppins\",\"product_status_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"product_status_typography_font_weight\":\"400\",\"product_status_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"product_status_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"product_status_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"product_price_color\":\"#FF4F40\",\"product_price_old_color\":\"#FF7E73\",\"product_price_typography_typography\":\"custom\",\"product_price_typography_font_family\":\"Poppins\",\"product_price_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"product_price_typography_font_weight\":\"400\",\"add_to_cart_border_color\":\"#FF4F40\",\"add_to_cart_color_hr\":\"#FFFFFF\",\"add_to_cart_bg_color_hr\":\"#FF4F40\",\"add_to_cart_border_color_hr\":\"#FF4F40\",\"add_to_cart_transition_duration\":0.3,\"add_to_cart_typography_typography\":\"custom\",\"add_to_cart_typography_font_family\":\"Poppins\",\"add_to_cart_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"add_to_cart_typography_font_weight\":\"400\",\"add_to_cart_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"add_to_cart_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"30\",\"bottom\":\"8\",\"left\":\"30\",\"isLinked\":false},\"add_to_cart_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"product_price_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"cross_sell_heading\":\"You may be interested in...\",\"upsell_heading\":\"You may also like...\",\"sort_heading\":\"Shop\",\"sort_and_results_count\":\"\",\"product_rating_color\":\"#FF4F40\",\"product_rating_score_color\":\"#FF4F40\",\"product_status_ft_bg_color\":\"#FF4F40\",\"layout_columns_tablet\":\"2\",\"sort_and_results_count_tablet\":\"\",\"sort_and_results_count_mobile\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"product_price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"add_to_cart_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"add_to_cart_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"25\",\"bottom\":\"7\",\"left\":\"25\",\"isLinked\":false},\"lightbox_typography_font_family\":\"Roboto\",\"lightbox_typography_font_size\":{\"unit\":\"px\",\"size\":88,\"sizes\":[]},\"lightbox_typography_font_weight\":\"400\",\"sort_title_color\":\"#FFFFFF\",\"results_color\":\"#FFFFFF\",\"sorting_color\":\"#2D2D2D\",\"grid_linked_products_heading\":\"You may be interested in...\",\"query_manual_products\":[\"53\",\"83\",\"364\",\"404\",\"407\",\"409\"]},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(1900,2249,'_elementor_page_assets','a:0:{}'),(1901,2250,'_elementor_edit_mode','builder'),(1902,2250,'_elementor_template_type','wp-page'),(1903,2250,'_elementor_version','3.9.0'),(1904,2250,'_wp_page_template','elementor_canvas'),(1905,2250,'_elementor_data','[{\"id\":\"638551d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"10f834f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"e37e7f2\"}],\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0},\"elements\":[{\"id\":\"a808755\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}]},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4069cc7\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"b849f95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"df56f06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sale Products\",\"align\":\"center\",\"title_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec00d4f\",\"elType\":\"widget\",\"settings\":{\"query_not_found_text\":\"No Posts Found!\",\"layout_filters\":\"\",\"layout_pagination\":\"\",\"grid_elements\":[{\"_id\":\"e49138e\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"d8ef0e7\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"add-to-cart\",\"_id\":\"33d399d\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\",\"query_posts_per_page\":6,\"layout_gutter_vr\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color_hr\":\"#333333\",\"title_transition_duration\":0.5,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"categories_color_hr\":\"#CD98CC\",\"categories_typography_typography\":\"custom\",\"categories_typography_font_family\":\"Poppins\",\"categories_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"categories_typography_font_weight\":\"400\",\"product_status_os_bg_color\":\"#FF4F40\",\"product_status_typography_typography\":\"custom\",\"product_status_typography_font_family\":\"Poppins\",\"product_status_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"product_status_typography_font_weight\":\"400\",\"product_status_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"product_status_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"product_status_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"product_price_color\":\"#FF4F40\",\"product_price_old_color\":\"#FF7E73\",\"product_price_typography_typography\":\"custom\",\"product_price_typography_font_family\":\"Poppins\",\"product_price_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"product_price_typography_font_weight\":\"400\",\"add_to_cart_border_color\":\"#FF4F40\",\"add_to_cart_color_hr\":\"#FFFFFF\",\"add_to_cart_bg_color_hr\":\"#FF4F40\",\"add_to_cart_border_color_hr\":\"#FF4F40\",\"add_to_cart_transition_duration\":0.3,\"add_to_cart_typography_typography\":\"custom\",\"add_to_cart_typography_font_family\":\"Poppins\",\"add_to_cart_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"add_to_cart_typography_font_weight\":\"400\",\"add_to_cart_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"add_to_cart_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"30\",\"bottom\":\"8\",\"left\":\"30\",\"isLinked\":false},\"add_to_cart_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"product_price_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"cross_sell_heading\":\"You may be interested in...\",\"upsell_heading\":\"You may also like...\",\"sort_heading\":\"Shop\",\"sort_and_results_count\":\"\",\"product_rating_color\":\"#FF4F40\",\"product_rating_score_color\":\"#FF4F40\",\"product_status_ft_bg_color\":\"#FF4F40\",\"layout_columns_tablet\":\"2\",\"sort_and_results_count_tablet\":\"\",\"sort_and_results_count_mobile\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"product_price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"add_to_cart_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"add_to_cart_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"25\",\"bottom\":\"7\",\"left\":\"25\",\"isLinked\":false},\"lightbox_typography_font_family\":\"Roboto\",\"lightbox_typography_font_size\":{\"unit\":\"px\",\"size\":88,\"sizes\":[]},\"lightbox_typography_font_weight\":\"400\",\"sort_title_color\":\"#FFFFFF\",\"results_color\":\"#FFFFFF\",\"sorting_color\":\"#2D2D2D\",\"grid_linked_products_heading\":\"You may be interested in...\",\"query_manual_products\":[\"53\",\"83\",\"364\",\"404\",\"407\",\"409\"]},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(1906,2250,'_elementor_page_assets','a:0:{}'),(1907,2251,'_elementor_edit_mode','builder'),(1908,2251,'_elementor_template_type','wp-page'),(1909,2251,'_elementor_version','3.9.0'),(1910,2251,'_wp_page_template','elementor_canvas'),(1911,2251,'_elementor_data','[{\"id\":\"638551d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"10f834f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"e37e7f2\"}],\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0},\"elements\":[{\"id\":\"a808755\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}]},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4069cc7\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"b849f95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"df56f06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sale Products\",\"align\":\"center\",\"title_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec00d4f\",\"elType\":\"widget\",\"settings\":{\"query_not_found_text\":\"No Posts Found!\",\"layout_filters\":\"\",\"layout_pagination\":\"\",\"grid_elements\":[{\"_id\":\"e49138e\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"d8ef0e7\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"add-to-cart\",\"_id\":\"33d399d\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\",\"query_posts_per_page\":6,\"layout_gutter_vr\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color_hr\":\"#333333\",\"title_transition_duration\":0.5,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"categories_color_hr\":\"#CD98CC\",\"categories_typography_typography\":\"custom\",\"categories_typography_font_family\":\"Poppins\",\"categories_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"categories_typography_font_weight\":\"400\",\"product_status_os_bg_color\":\"#FF4F40\",\"product_status_typography_typography\":\"custom\",\"product_status_typography_font_family\":\"Poppins\",\"product_status_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"product_status_typography_font_weight\":\"400\",\"product_status_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"product_status_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"product_status_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"product_price_color\":\"#FF4F40\",\"product_price_old_color\":\"#FF7E73\",\"product_price_typography_typography\":\"custom\",\"product_price_typography_font_family\":\"Poppins\",\"product_price_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"product_price_typography_font_weight\":\"400\",\"add_to_cart_border_color\":\"#FF4F40\",\"add_to_cart_color_hr\":\"#FFFFFF\",\"add_to_cart_bg_color_hr\":\"#FF4F40\",\"add_to_cart_border_color_hr\":\"#FF4F40\",\"add_to_cart_transition_duration\":0.3,\"add_to_cart_typography_typography\":\"custom\",\"add_to_cart_typography_font_family\":\"Poppins\",\"add_to_cart_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"add_to_cart_typography_font_weight\":\"400\",\"add_to_cart_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"add_to_cart_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"30\",\"bottom\":\"8\",\"left\":\"30\",\"isLinked\":false},\"add_to_cart_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"product_price_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"cross_sell_heading\":\"You may be interested in...\",\"upsell_heading\":\"You may also like...\",\"sort_heading\":\"Shop\",\"sort_and_results_count\":\"\",\"product_rating_color\":\"#FF4F40\",\"product_rating_score_color\":\"#FF4F40\",\"product_status_ft_bg_color\":\"#FF4F40\",\"layout_columns_tablet\":\"2\",\"sort_and_results_count_tablet\":\"\",\"sort_and_results_count_mobile\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"product_price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"add_to_cart_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"add_to_cart_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"25\",\"bottom\":\"7\",\"left\":\"25\",\"isLinked\":false},\"lightbox_typography_font_family\":\"Roboto\",\"lightbox_typography_font_size\":{\"unit\":\"px\",\"size\":88,\"sizes\":[]},\"lightbox_typography_font_weight\":\"400\",\"sort_title_color\":\"#FFFFFF\",\"results_color\":\"#FFFFFF\",\"sorting_color\":\"#2D2D2D\",\"grid_linked_products_heading\":\"You may be interested in...\",\"query_manual_products\":[\"53\",\"83\",\"364\",\"404\",\"407\",\"409\"]},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(1912,2251,'_elementor_page_assets','a:0:{}'),(1914,2252,'_elementor_edit_mode','builder'),(1915,2252,'_elementor_template_type','wp-page'),(1916,2252,'_elementor_version','3.9.0'),(1917,2252,'_wp_page_template','elementor_canvas'),(1918,2252,'_elementor_data','[{\"id\":\"638551d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"10f834f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"e37e7f2\"}],\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0},\"elements\":[{\"id\":\"a808755\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}]},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4069cc7\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"b849f95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"df56f06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sale Products\",\"align\":\"center\",\"title_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec00d4f\",\"elType\":\"widget\",\"settings\":{\"query_not_found_text\":\"No Posts Found!\",\"layout_filters\":\"\",\"layout_pagination\":\"\",\"grid_elements\":[{\"_id\":\"e49138e\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"d8ef0e7\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"add-to-cart\",\"_id\":\"33d399d\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\",\"query_posts_per_page\":6,\"layout_gutter_vr\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color_hr\":\"#333333\",\"title_transition_duration\":0.5,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"categories_color_hr\":\"#CD98CC\",\"categories_typography_typography\":\"custom\",\"categories_typography_font_family\":\"Poppins\",\"categories_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"categories_typography_font_weight\":\"400\",\"product_status_os_bg_color\":\"#FF4F40\",\"product_status_typography_typography\":\"custom\",\"product_status_typography_font_family\":\"Poppins\",\"product_status_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"product_status_typography_font_weight\":\"400\",\"product_status_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"product_status_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"product_status_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"product_price_color\":\"#FF4F40\",\"product_price_old_color\":\"#FF7E73\",\"product_price_typography_typography\":\"custom\",\"product_price_typography_font_family\":\"Poppins\",\"product_price_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"product_price_typography_font_weight\":\"400\",\"add_to_cart_border_color\":\"#FF4F40\",\"add_to_cart_color_hr\":\"#FFFFFF\",\"add_to_cart_bg_color_hr\":\"#FF4F40\",\"add_to_cart_border_color_hr\":\"#FF4F40\",\"add_to_cart_transition_duration\":0.3,\"add_to_cart_typography_typography\":\"custom\",\"add_to_cart_typography_font_family\":\"Poppins\",\"add_to_cart_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"add_to_cart_typography_font_weight\":\"400\",\"add_to_cart_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"add_to_cart_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"30\",\"bottom\":\"8\",\"left\":\"30\",\"isLinked\":false},\"add_to_cart_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"product_price_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"cross_sell_heading\":\"You may be interested in...\",\"upsell_heading\":\"You may also like...\",\"sort_heading\":\"Shop\",\"sort_and_results_count\":\"\",\"product_rating_color\":\"#FF4F40\",\"product_rating_score_color\":\"#FF4F40\",\"product_status_ft_bg_color\":\"#FF4F40\",\"layout_columns_tablet\":\"2\",\"sort_and_results_count_tablet\":\"\",\"sort_and_results_count_mobile\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"product_price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"add_to_cart_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"add_to_cart_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"25\",\"bottom\":\"7\",\"left\":\"25\",\"isLinked\":false},\"lightbox_typography_font_family\":\"Roboto\",\"lightbox_typography_font_size\":{\"unit\":\"px\",\"size\":88,\"sizes\":[]},\"lightbox_typography_font_weight\":\"400\",\"sort_title_color\":\"#FFFFFF\",\"results_color\":\"#FFFFFF\",\"sorting_color\":\"#2D2D2D\",\"grid_linked_products_heading\":\"You may be interested in...\",\"query_manual_products\":[\"53\",\"83\",\"364\",\"404\",\"407\",\"409\"]},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(1919,2252,'_elementor_page_assets','a:0:{}'),(1921,2253,'_elementor_edit_mode','builder'),(1922,2253,'_elementor_template_type','wp-page'),(1923,2253,'_elementor_version','3.9.0'),(1924,2253,'_wp_page_template','elementor_canvas'),(1925,2253,'_elementor_data','[{\"id\":\"638551d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"10f834f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"e37e7f2\"}],\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0},\"elements\":[{\"id\":\"a808755\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}]},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4069cc7\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"b849f95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"df56f06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sale Products\",\"align\":\"center\",\"title_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec00d4f\",\"elType\":\"widget\",\"settings\":{\"query_not_found_text\":\"No Posts Found!\",\"layout_filters\":\"\",\"layout_pagination\":\"\",\"grid_elements\":[{\"_id\":\"e49138e\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"d8ef0e7\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"add-to-cart\",\"_id\":\"33d399d\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\",\"query_posts_per_page\":6,\"layout_gutter_vr\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color_hr\":\"#333333\",\"title_transition_duration\":0.5,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"categories_color_hr\":\"#CD98CC\",\"categories_typography_typography\":\"custom\",\"categories_typography_font_family\":\"Poppins\",\"categories_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"categories_typography_font_weight\":\"400\",\"product_status_os_bg_color\":\"#FF4F40\",\"product_status_typography_typography\":\"custom\",\"product_status_typography_font_family\":\"Poppins\",\"product_status_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"product_status_typography_font_weight\":\"400\",\"product_status_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"product_status_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"product_status_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"product_price_color\":\"#FF4F40\",\"product_price_old_color\":\"#FF7E73\",\"product_price_typography_typography\":\"custom\",\"product_price_typography_font_family\":\"Poppins\",\"product_price_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"product_price_typography_font_weight\":\"400\",\"add_to_cart_border_color\":\"#FF4F40\",\"add_to_cart_color_hr\":\"#FFFFFF\",\"add_to_cart_bg_color_hr\":\"#FF4F40\",\"add_to_cart_border_color_hr\":\"#FF4F40\",\"add_to_cart_transition_duration\":0.3,\"add_to_cart_typography_typography\":\"custom\",\"add_to_cart_typography_font_family\":\"Poppins\",\"add_to_cart_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"add_to_cart_typography_font_weight\":\"400\",\"add_to_cart_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"add_to_cart_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"30\",\"bottom\":\"8\",\"left\":\"30\",\"isLinked\":false},\"add_to_cart_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"product_price_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"cross_sell_heading\":\"You may be interested in...\",\"upsell_heading\":\"You may also like...\",\"sort_heading\":\"Shop\",\"sort_and_results_count\":\"\",\"product_rating_color\":\"#FF4F40\",\"product_rating_score_color\":\"#FF4F40\",\"product_status_ft_bg_color\":\"#FF4F40\",\"layout_columns_tablet\":\"2\",\"sort_and_results_count_tablet\":\"\",\"sort_and_results_count_mobile\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"product_price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"add_to_cart_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"add_to_cart_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"25\",\"bottom\":\"7\",\"left\":\"25\",\"isLinked\":false},\"lightbox_typography_font_family\":\"Roboto\",\"lightbox_typography_font_size\":{\"unit\":\"px\",\"size\":88,\"sizes\":[]},\"lightbox_typography_font_weight\":\"400\",\"sort_title_color\":\"#FFFFFF\",\"results_color\":\"#FFFFFF\",\"sorting_color\":\"#2D2D2D\",\"grid_linked_products_heading\":\"You may be interested in...\",\"query_manual_products\":[\"53\",\"83\",\"364\",\"404\",\"407\",\"409\"]},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(1926,2253,'_elementor_page_assets','a:0:{}'),(1928,2254,'_elementor_edit_mode','builder'),(1929,2254,'_elementor_template_type','wp-page'),(1930,2254,'_elementor_version','3.9.0'),(1931,2254,'_wp_page_template','elementor_canvas'),(1932,2254,'_elementor_data','[{\"id\":\"638551d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"10f834f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"e37e7f2\"}],\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0},\"elements\":[{\"id\":\"a808755\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}]},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4069cc7\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"b849f95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"df56f06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sale Products\",\"align\":\"center\",\"title_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec00d4f\",\"elType\":\"widget\",\"settings\":{\"query_not_found_text\":\"No Posts Found!\",\"layout_filters\":\"\",\"layout_pagination\":\"\",\"grid_elements\":[{\"_id\":\"e49138e\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"d8ef0e7\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"add-to-cart\",\"_id\":\"33d399d\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\",\"query_posts_per_page\":6,\"layout_gutter_vr\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color_hr\":\"#333333\",\"title_transition_duration\":0.5,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"categories_color_hr\":\"#CD98CC\",\"categories_typography_typography\":\"custom\",\"categories_typography_font_family\":\"Poppins\",\"categories_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"categories_typography_font_weight\":\"400\",\"product_status_os_bg_color\":\"#FF4F40\",\"product_status_typography_typography\":\"custom\",\"product_status_typography_font_family\":\"Poppins\",\"product_status_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"product_status_typography_font_weight\":\"400\",\"product_status_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"product_status_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"product_status_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"product_price_color\":\"#FF4F40\",\"product_price_old_color\":\"#FF7E73\",\"product_price_typography_typography\":\"custom\",\"product_price_typography_font_family\":\"Poppins\",\"product_price_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"product_price_typography_font_weight\":\"400\",\"add_to_cart_border_color\":\"#FF4F40\",\"add_to_cart_color_hr\":\"#FFFFFF\",\"add_to_cart_bg_color_hr\":\"#FF4F40\",\"add_to_cart_border_color_hr\":\"#FF4F40\",\"add_to_cart_transition_duration\":0.3,\"add_to_cart_typography_typography\":\"custom\",\"add_to_cart_typography_font_family\":\"Poppins\",\"add_to_cart_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"add_to_cart_typography_font_weight\":\"400\",\"add_to_cart_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"add_to_cart_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"30\",\"bottom\":\"8\",\"left\":\"30\",\"isLinked\":false},\"add_to_cart_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"product_price_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"cross_sell_heading\":\"You may be interested in...\",\"upsell_heading\":\"You may also like...\",\"sort_heading\":\"Shop\",\"sort_and_results_count\":\"\",\"product_rating_color\":\"#FF4F40\",\"product_rating_score_color\":\"#FF4F40\",\"product_status_ft_bg_color\":\"#FF4F40\",\"layout_columns_tablet\":\"2\",\"sort_and_results_count_tablet\":\"\",\"sort_and_results_count_mobile\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"product_price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"add_to_cart_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"add_to_cart_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"25\",\"bottom\":\"7\",\"left\":\"25\",\"isLinked\":false},\"lightbox_typography_font_family\":\"Roboto\",\"lightbox_typography_font_size\":{\"unit\":\"px\",\"size\":88,\"sizes\":[]},\"lightbox_typography_font_weight\":\"400\",\"sort_title_color\":\"#FFFFFF\",\"results_color\":\"#FFFFFF\",\"sorting_color\":\"#2D2D2D\",\"grid_linked_products_heading\":\"You may be interested in...\",\"query_manual_products\":[\"53\",\"83\",\"364\",\"404\",\"407\",\"409\"]},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(1933,2254,'_elementor_page_assets','a:0:{}'),(1936,2255,'_elementor_edit_mode','builder'),(1937,2255,'_elementor_template_type','wp-page'),(1938,2255,'_elementor_version','3.9.0'),(1939,2255,'_wp_page_template','elementor_canvas'),(1940,2255,'_elementor_data','[{\"id\":\"638551d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"10f834f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"e37e7f2\"}],\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0},\"elements\":[{\"id\":\"a808755\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}]},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4069cc7\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"b849f95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"df56f06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sale Products\",\"align\":\"center\",\"title_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec00d4f\",\"elType\":\"widget\",\"settings\":{\"query_not_found_text\":\"No Posts Found!\",\"layout_filters\":\"\",\"layout_pagination\":\"\",\"grid_elements\":[{\"_id\":\"e49138e\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"d8ef0e7\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"add-to-cart\",\"_id\":\"33d399d\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\",\"query_posts_per_page\":6,\"layout_gutter_vr\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color_hr\":\"#333333\",\"title_transition_duration\":0.5,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"categories_color_hr\":\"#CD98CC\",\"categories_typography_typography\":\"custom\",\"categories_typography_font_family\":\"Poppins\",\"categories_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"categories_typography_font_weight\":\"400\",\"product_status_os_bg_color\":\"#FF4F40\",\"product_status_typography_typography\":\"custom\",\"product_status_typography_font_family\":\"Poppins\",\"product_status_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"product_status_typography_font_weight\":\"400\",\"product_status_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"product_status_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"product_status_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"product_price_color\":\"#FF4F40\",\"product_price_old_color\":\"#FF7E73\",\"product_price_typography_typography\":\"custom\",\"product_price_typography_font_family\":\"Poppins\",\"product_price_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"product_price_typography_font_weight\":\"400\",\"add_to_cart_border_color\":\"#FF4F40\",\"add_to_cart_color_hr\":\"#FFFFFF\",\"add_to_cart_bg_color_hr\":\"#FF4F40\",\"add_to_cart_border_color_hr\":\"#FF4F40\",\"add_to_cart_transition_duration\":0.3,\"add_to_cart_typography_typography\":\"custom\",\"add_to_cart_typography_font_family\":\"Poppins\",\"add_to_cart_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"add_to_cart_typography_font_weight\":\"400\",\"add_to_cart_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"add_to_cart_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"30\",\"bottom\":\"8\",\"left\":\"30\",\"isLinked\":false},\"add_to_cart_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"product_price_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"cross_sell_heading\":\"You may be interested in...\",\"upsell_heading\":\"You may also like...\",\"sort_heading\":\"Shop\",\"sort_and_results_count\":\"\",\"product_rating_color\":\"#FF4F40\",\"product_rating_score_color\":\"#FF4F40\",\"product_status_ft_bg_color\":\"#FF4F40\",\"layout_columns_tablet\":\"2\",\"sort_and_results_count_tablet\":\"\",\"sort_and_results_count_mobile\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"product_price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"add_to_cart_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"add_to_cart_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"25\",\"bottom\":\"7\",\"left\":\"25\",\"isLinked\":false},\"lightbox_typography_font_family\":\"Roboto\",\"lightbox_typography_font_size\":{\"unit\":\"px\",\"size\":88,\"sizes\":[]},\"lightbox_typography_font_weight\":\"400\",\"sort_title_color\":\"#FFFFFF\",\"results_color\":\"#FFFFFF\",\"sorting_color\":\"#2D2D2D\",\"grid_linked_products_heading\":\"You may be interested in...\",\"query_manual_products\":[\"53\",\"83\",\"364\",\"404\",\"407\",\"409\"]},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(1941,2255,'_elementor_page_assets','a:0:{}'),(1943,2256,'_elementor_edit_mode','builder'),(1944,2256,'_elementor_template_type','wp-page'),(1945,2256,'_elementor_version','3.9.0'),(1946,2256,'_wp_page_template','elementor_canvas'),(1947,2256,'_elementor_data','[{\"id\":\"638551d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"10f834f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"e37e7f2\"}],\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0},\"elements\":[{\"id\":\"a808755\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}]},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4069cc7\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"b849f95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"df56f06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sale Products\",\"align\":\"center\",\"title_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec00d4f\",\"elType\":\"widget\",\"settings\":{\"query_not_found_text\":\"No Posts Found!\",\"layout_filters\":\"\",\"layout_pagination\":\"\",\"grid_elements\":[{\"_id\":\"e49138e\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"d8ef0e7\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"add-to-cart\",\"_id\":\"33d399d\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\",\"query_posts_per_page\":6,\"layout_gutter_vr\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color_hr\":\"#333333\",\"title_transition_duration\":0.5,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"categories_color_hr\":\"#CD98CC\",\"categories_typography_typography\":\"custom\",\"categories_typography_font_family\":\"Poppins\",\"categories_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"categories_typography_font_weight\":\"400\",\"product_status_os_bg_color\":\"#FF4F40\",\"product_status_typography_typography\":\"custom\",\"product_status_typography_font_family\":\"Poppins\",\"product_status_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"product_status_typography_font_weight\":\"400\",\"product_status_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"product_status_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"product_status_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"product_price_color\":\"#FF4F40\",\"product_price_old_color\":\"#FF7E73\",\"product_price_typography_typography\":\"custom\",\"product_price_typography_font_family\":\"Poppins\",\"product_price_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"product_price_typography_font_weight\":\"400\",\"add_to_cart_border_color\":\"#FF4F40\",\"add_to_cart_color_hr\":\"#FFFFFF\",\"add_to_cart_bg_color_hr\":\"#FF4F40\",\"add_to_cart_border_color_hr\":\"#FF4F40\",\"add_to_cart_transition_duration\":0.3,\"add_to_cart_typography_typography\":\"custom\",\"add_to_cart_typography_font_family\":\"Poppins\",\"add_to_cart_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"add_to_cart_typography_font_weight\":\"400\",\"add_to_cart_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"add_to_cart_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"30\",\"bottom\":\"8\",\"left\":\"30\",\"isLinked\":false},\"add_to_cart_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"product_price_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"cross_sell_heading\":\"You may be interested in...\",\"upsell_heading\":\"You may also like...\",\"sort_heading\":\"Shop\",\"sort_and_results_count\":\"\",\"product_rating_color\":\"#FF4F40\",\"product_rating_score_color\":\"#FF4F40\",\"product_status_ft_bg_color\":\"#FF4F40\",\"layout_columns_tablet\":\"2\",\"sort_and_results_count_tablet\":\"\",\"sort_and_results_count_mobile\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"product_price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"add_to_cart_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"add_to_cart_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"25\",\"bottom\":\"7\",\"left\":\"25\",\"isLinked\":false},\"lightbox_typography_font_family\":\"Roboto\",\"lightbox_typography_font_size\":{\"unit\":\"px\",\"size\":88,\"sizes\":[]},\"lightbox_typography_font_weight\":\"400\",\"sort_title_color\":\"#FFFFFF\",\"results_color\":\"#FFFFFF\",\"sorting_color\":\"#2D2D2D\",\"grid_linked_products_heading\":\"You may be interested in...\",\"query_manual_products\":[\"53\",\"83\",\"364\",\"404\",\"407\",\"409\"]},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(1948,2256,'_elementor_page_assets','a:0:{}'),(1950,2257,'_elementor_edit_mode','builder'),(1951,2257,'_elementor_template_type','wp-page'),(1952,2257,'_elementor_version','3.9.0'),(1953,2257,'_wp_page_template','elementor_canvas'),(1954,2257,'_elementor_data','[{\"id\":\"638551d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"10f834f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"e37e7f2\"}],\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0},\"elements\":[{\"id\":\"a808755\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}]},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4069cc7\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"b849f95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"df56f06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sale Products\",\"align\":\"center\",\"title_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec00d4f\",\"elType\":\"widget\",\"settings\":{\"query_not_found_text\":\"No Posts Found!\",\"layout_filters\":\"\",\"layout_pagination\":\"\",\"grid_elements\":[{\"_id\":\"e49138e\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"d8ef0e7\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"add-to-cart\",\"_id\":\"33d399d\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\",\"query_posts_per_page\":6,\"layout_gutter_vr\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color_hr\":\"#333333\",\"title_transition_duration\":0.5,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"categories_color_hr\":\"#CD98CC\",\"categories_typography_typography\":\"custom\",\"categories_typography_font_family\":\"Poppins\",\"categories_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"categories_typography_font_weight\":\"400\",\"product_status_os_bg_color\":\"#FF4F40\",\"product_status_typography_typography\":\"custom\",\"product_status_typography_font_family\":\"Poppins\",\"product_status_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"product_status_typography_font_weight\":\"400\",\"product_status_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"product_status_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"product_status_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"product_price_color\":\"#FF4F40\",\"product_price_old_color\":\"#FF7E73\",\"product_price_typography_typography\":\"custom\",\"product_price_typography_font_family\":\"Poppins\",\"product_price_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"product_price_typography_font_weight\":\"400\",\"add_to_cart_border_color\":\"#FF4F40\",\"add_to_cart_color_hr\":\"#FFFFFF\",\"add_to_cart_bg_color_hr\":\"#FF4F40\",\"add_to_cart_border_color_hr\":\"#FF4F40\",\"add_to_cart_transition_duration\":0.3,\"add_to_cart_typography_typography\":\"custom\",\"add_to_cart_typography_font_family\":\"Poppins\",\"add_to_cart_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"add_to_cart_typography_font_weight\":\"400\",\"add_to_cart_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"add_to_cart_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"30\",\"bottom\":\"8\",\"left\":\"30\",\"isLinked\":false},\"add_to_cart_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"product_price_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"cross_sell_heading\":\"You may be interested in...\",\"upsell_heading\":\"You may also like...\",\"sort_heading\":\"Shop\",\"sort_and_results_count\":\"\",\"product_rating_color\":\"#FF4F40\",\"product_rating_score_color\":\"#FF4F40\",\"product_status_ft_bg_color\":\"#FF4F40\",\"layout_columns_tablet\":\"2\",\"sort_and_results_count_tablet\":\"\",\"sort_and_results_count_mobile\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"product_price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"add_to_cart_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"add_to_cart_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"25\",\"bottom\":\"7\",\"left\":\"25\",\"isLinked\":false},\"lightbox_typography_font_family\":\"Roboto\",\"lightbox_typography_font_size\":{\"unit\":\"px\",\"size\":88,\"sizes\":[]},\"lightbox_typography_font_weight\":\"400\",\"sort_title_color\":\"#FFFFFF\",\"results_color\":\"#FFFFFF\",\"sorting_color\":\"#2D2D2D\",\"grid_linked_products_heading\":\"You may be interested in...\",\"query_manual_products\":[\"53\",\"83\",\"364\",\"404\",\"407\",\"409\"]},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(1955,2257,'_elementor_page_assets','a:0:{}'),(1958,2258,'_elementor_edit_mode','builder'),(1959,2258,'_elementor_template_type','wp-page'),(1960,2258,'_elementor_version','3.9.0'),(1961,2258,'_wp_page_template','elementor_canvas'),(1962,2258,'_elementor_data','[{\"id\":\"638551d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"10f834f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"e37e7f2\"}],\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0},\"elements\":[{\"id\":\"a808755\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}]},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4069cc7\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"b849f95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"df56f06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sale Products\",\"align\":\"center\",\"title_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec00d4f\",\"elType\":\"widget\",\"settings\":{\"query_not_found_text\":\"No Posts Found!\",\"layout_filters\":\"\",\"layout_pagination\":\"\",\"grid_elements\":[{\"_id\":\"e49138e\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"d8ef0e7\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"add-to-cart\",\"_id\":\"33d399d\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\",\"query_posts_per_page\":6,\"layout_gutter_vr\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color_hr\":\"#333333\",\"title_transition_duration\":0.5,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"categories_color_hr\":\"#CD98CC\",\"categories_typography_typography\":\"custom\",\"categories_typography_font_family\":\"Poppins\",\"categories_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"categories_typography_font_weight\":\"400\",\"product_status_os_bg_color\":\"#FF4F40\",\"product_status_typography_typography\":\"custom\",\"product_status_typography_font_family\":\"Poppins\",\"product_status_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"product_status_typography_font_weight\":\"400\",\"product_status_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"product_status_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"product_status_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"product_price_color\":\"#FF4F40\",\"product_price_old_color\":\"#FF7E73\",\"product_price_typography_typography\":\"custom\",\"product_price_typography_font_family\":\"Poppins\",\"product_price_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"product_price_typography_font_weight\":\"400\",\"add_to_cart_border_color\":\"#FF4F40\",\"add_to_cart_color_hr\":\"#FFFFFF\",\"add_to_cart_bg_color_hr\":\"#FF4F40\",\"add_to_cart_border_color_hr\":\"#FF4F40\",\"add_to_cart_transition_duration\":0.3,\"add_to_cart_typography_typography\":\"custom\",\"add_to_cart_typography_font_family\":\"Poppins\",\"add_to_cart_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"add_to_cart_typography_font_weight\":\"400\",\"add_to_cart_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"add_to_cart_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"30\",\"bottom\":\"8\",\"left\":\"30\",\"isLinked\":false},\"add_to_cart_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"product_price_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"cross_sell_heading\":\"You may be interested in...\",\"upsell_heading\":\"You may also like...\",\"sort_heading\":\"Shop\",\"sort_and_results_count\":\"\",\"product_rating_color\":\"#FF4F40\",\"product_rating_score_color\":\"#FF4F40\",\"product_status_ft_bg_color\":\"#FF4F40\",\"layout_columns_tablet\":\"2\",\"sort_and_results_count_tablet\":\"\",\"sort_and_results_count_mobile\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"product_price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"add_to_cart_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"add_to_cart_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"25\",\"bottom\":\"7\",\"left\":\"25\",\"isLinked\":false},\"lightbox_typography_font_family\":\"Roboto\",\"lightbox_typography_font_size\":{\"unit\":\"px\",\"size\":88,\"sizes\":[]},\"lightbox_typography_font_weight\":\"400\",\"sort_title_color\":\"#FFFFFF\",\"results_color\":\"#FFFFFF\",\"sorting_color\":\"#2D2D2D\",\"grid_linked_products_heading\":\"You may be interested in...\",\"query_manual_products\":[\"53\",\"83\",\"364\",\"404\",\"407\",\"409\"]},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(1963,2258,'_elementor_page_assets','a:0:{}'),(1965,2259,'_elementor_edit_mode','builder'),(1966,2259,'_elementor_template_type','wp-page'),(1967,2259,'_elementor_version','3.9.0'),(1968,2259,'_wp_page_template','elementor_canvas'),(1969,2259,'_elementor_data','[{\"id\":\"638551d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"10f834f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"e37e7f2\"}],\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0},\"elements\":[{\"id\":\"a808755\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}]},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4069cc7\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"b849f95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"df56f06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sale Products\",\"align\":\"center\",\"title_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec00d4f\",\"elType\":\"widget\",\"settings\":{\"query_not_found_text\":\"No Posts Found!\",\"layout_filters\":\"\",\"layout_pagination\":\"\",\"grid_elements\":[{\"_id\":\"e49138e\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"d8ef0e7\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"add-to-cart\",\"_id\":\"33d399d\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\",\"query_posts_per_page\":6,\"layout_gutter_vr\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color_hr\":\"#333333\",\"title_transition_duration\":0.5,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"categories_color_hr\":\"#CD98CC\",\"categories_typography_typography\":\"custom\",\"categories_typography_font_family\":\"Poppins\",\"categories_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"categories_typography_font_weight\":\"400\",\"product_status_os_bg_color\":\"#FF4F40\",\"product_status_typography_typography\":\"custom\",\"product_status_typography_font_family\":\"Poppins\",\"product_status_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"product_status_typography_font_weight\":\"400\",\"product_status_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"product_status_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"product_status_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"product_price_color\":\"#FF4F40\",\"product_price_old_color\":\"#FF7E73\",\"product_price_typography_typography\":\"custom\",\"product_price_typography_font_family\":\"Poppins\",\"product_price_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"product_price_typography_font_weight\":\"400\",\"add_to_cart_border_color\":\"#FF4F40\",\"add_to_cart_color_hr\":\"#FFFFFF\",\"add_to_cart_bg_color_hr\":\"#FF4F40\",\"add_to_cart_border_color_hr\":\"#FF4F40\",\"add_to_cart_transition_duration\":0.3,\"add_to_cart_typography_typography\":\"custom\",\"add_to_cart_typography_font_family\":\"Poppins\",\"add_to_cart_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"add_to_cart_typography_font_weight\":\"400\",\"add_to_cart_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"add_to_cart_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"30\",\"bottom\":\"8\",\"left\":\"30\",\"isLinked\":false},\"add_to_cart_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"product_price_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"cross_sell_heading\":\"You may be interested in...\",\"upsell_heading\":\"You may also like...\",\"sort_heading\":\"Shop\",\"sort_and_results_count\":\"\",\"product_rating_color\":\"#FF4F40\",\"product_rating_score_color\":\"#FF4F40\",\"product_status_ft_bg_color\":\"#FF4F40\",\"layout_columns_tablet\":\"2\",\"sort_and_results_count_tablet\":\"\",\"sort_and_results_count_mobile\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"product_price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"add_to_cart_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"add_to_cart_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"25\",\"bottom\":\"7\",\"left\":\"25\",\"isLinked\":false},\"lightbox_typography_font_family\":\"Roboto\",\"lightbox_typography_font_size\":{\"unit\":\"px\",\"size\":88,\"sizes\":[]},\"lightbox_typography_font_weight\":\"400\",\"sort_title_color\":\"#FFFFFF\",\"results_color\":\"#FFFFFF\",\"sorting_color\":\"#2D2D2D\",\"grid_linked_products_heading\":\"You may be interested in...\",\"query_manual_products\":[\"53\",\"83\",\"364\",\"404\",\"407\",\"409\"]},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(1970,2259,'_elementor_page_assets','a:0:{}'),(1972,2260,'_elementor_edit_mode','builder'),(1973,2260,'_elementor_template_type','wp-page'),(1974,2260,'_elementor_version','3.9.0'),(1975,2260,'_wp_page_template','elementor_canvas'),(1976,2260,'_elementor_data','[{\"id\":\"638551d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"10f834f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"e37e7f2\"}],\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0},\"elements\":[{\"id\":\"a808755\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}]},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4069cc7\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"b849f95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"df56f06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sale Products\",\"align\":\"center\",\"title_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec00d4f\",\"elType\":\"widget\",\"settings\":{\"query_not_found_text\":\"No Posts Found!\",\"layout_filters\":\"\",\"layout_pagination\":\"\",\"grid_elements\":[{\"_id\":\"e49138e\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"d8ef0e7\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"add-to-cart\",\"_id\":\"33d399d\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\",\"query_posts_per_page\":6,\"layout_gutter_vr\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color_hr\":\"#333333\",\"title_transition_duration\":0.5,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"categories_color_hr\":\"#CD98CC\",\"categories_typography_typography\":\"custom\",\"categories_typography_font_family\":\"Poppins\",\"categories_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"categories_typography_font_weight\":\"400\",\"product_status_os_bg_color\":\"#FF4F40\",\"product_status_typography_typography\":\"custom\",\"product_status_typography_font_family\":\"Poppins\",\"product_status_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"product_status_typography_font_weight\":\"400\",\"product_status_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"product_status_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"product_status_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"product_price_color\":\"#FF4F40\",\"product_price_old_color\":\"#FF7E73\",\"product_price_typography_typography\":\"custom\",\"product_price_typography_font_family\":\"Poppins\",\"product_price_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"product_price_typography_font_weight\":\"400\",\"add_to_cart_border_color\":\"#FF4F40\",\"add_to_cart_color_hr\":\"#FFFFFF\",\"add_to_cart_bg_color_hr\":\"#FF4F40\",\"add_to_cart_border_color_hr\":\"#FF4F40\",\"add_to_cart_transition_duration\":0.3,\"add_to_cart_typography_typography\":\"custom\",\"add_to_cart_typography_font_family\":\"Poppins\",\"add_to_cart_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"add_to_cart_typography_font_weight\":\"400\",\"add_to_cart_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"add_to_cart_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"30\",\"bottom\":\"8\",\"left\":\"30\",\"isLinked\":false},\"add_to_cart_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"product_price_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"cross_sell_heading\":\"You may be interested in...\",\"upsell_heading\":\"You may also like...\",\"sort_heading\":\"Shop\",\"sort_and_results_count\":\"\",\"product_rating_color\":\"#FF4F40\",\"product_rating_score_color\":\"#FF4F40\",\"product_status_ft_bg_color\":\"#FF4F40\",\"layout_columns_tablet\":\"2\",\"sort_and_results_count_tablet\":\"\",\"sort_and_results_count_mobile\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"product_price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"add_to_cart_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"add_to_cart_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"25\",\"bottom\":\"7\",\"left\":\"25\",\"isLinked\":false},\"lightbox_typography_font_family\":\"Roboto\",\"lightbox_typography_font_size\":{\"unit\":\"px\",\"size\":88,\"sizes\":[]},\"lightbox_typography_font_weight\":\"400\",\"sort_title_color\":\"#FFFFFF\",\"results_color\":\"#FFFFFF\",\"sorting_color\":\"#2D2D2D\",\"grid_linked_products_heading\":\"You may be interested in...\",\"query_manual_products\":[\"53\",\"83\",\"364\",\"404\",\"407\",\"409\"]},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(1977,2260,'_elementor_page_assets','a:0:{}'),(1980,2261,'_elementor_edit_mode','builder'),(1981,2261,'_elementor_template_type','wp-page'),(1982,2261,'_elementor_version','3.9.0'),(1983,2261,'_wp_page_template','elementor_canvas'),(1984,2261,'_elementor_data','[{\"id\":\"638551d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"10f834f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"e37e7f2\"}],\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0},\"elements\":[{\"id\":\"a808755\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}]},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4069cc7\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"b849f95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"df56f06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sale Products\",\"align\":\"center\",\"title_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec00d4f\",\"elType\":\"widget\",\"settings\":{\"query_not_found_text\":\"No Posts Found!\",\"layout_filters\":\"\",\"layout_pagination\":\"\",\"grid_elements\":[{\"_id\":\"e49138e\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"d8ef0e7\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"add-to-cart\",\"_id\":\"33d399d\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\",\"query_posts_per_page\":6,\"layout_gutter_vr\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color_hr\":\"#333333\",\"title_transition_duration\":0.5,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"categories_color_hr\":\"#CD98CC\",\"categories_typography_typography\":\"custom\",\"categories_typography_font_family\":\"Poppins\",\"categories_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"categories_typography_font_weight\":\"400\",\"product_status_os_bg_color\":\"#FF4F40\",\"product_status_typography_typography\":\"custom\",\"product_status_typography_font_family\":\"Poppins\",\"product_status_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"product_status_typography_font_weight\":\"400\",\"product_status_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"product_status_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"product_status_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"product_price_color\":\"#FF4F40\",\"product_price_old_color\":\"#FF7E73\",\"product_price_typography_typography\":\"custom\",\"product_price_typography_font_family\":\"Poppins\",\"product_price_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"product_price_typography_font_weight\":\"400\",\"add_to_cart_border_color\":\"#FF4F40\",\"add_to_cart_color_hr\":\"#FFFFFF\",\"add_to_cart_bg_color_hr\":\"#FF4F40\",\"add_to_cart_border_color_hr\":\"#FF4F40\",\"add_to_cart_transition_duration\":0.3,\"add_to_cart_typography_typography\":\"custom\",\"add_to_cart_typography_font_family\":\"Poppins\",\"add_to_cart_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"add_to_cart_typography_font_weight\":\"400\",\"add_to_cart_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"add_to_cart_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"30\",\"bottom\":\"8\",\"left\":\"30\",\"isLinked\":false},\"add_to_cart_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"product_price_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"cross_sell_heading\":\"You may be interested in...\",\"upsell_heading\":\"You may also like...\",\"sort_heading\":\"Shop\",\"sort_and_results_count\":\"\",\"product_rating_color\":\"#FF4F40\",\"product_rating_score_color\":\"#FF4F40\",\"product_status_ft_bg_color\":\"#FF4F40\",\"layout_columns_tablet\":\"2\",\"sort_and_results_count_tablet\":\"\",\"sort_and_results_count_mobile\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"product_price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"add_to_cart_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"add_to_cart_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"25\",\"bottom\":\"7\",\"left\":\"25\",\"isLinked\":false},\"lightbox_typography_font_family\":\"Roboto\",\"lightbox_typography_font_size\":{\"unit\":\"px\",\"size\":88,\"sizes\":[]},\"lightbox_typography_font_weight\":\"400\",\"sort_title_color\":\"#FFFFFF\",\"results_color\":\"#FFFFFF\",\"sorting_color\":\"#2D2D2D\",\"grid_linked_products_heading\":\"You may be interested in...\",\"query_manual_products\":[\"53\",\"83\",\"364\",\"404\",\"407\",\"409\"]},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(1985,2261,'_elementor_page_assets','a:0:{}'),(1987,2262,'_elementor_edit_mode','builder'),(1988,2262,'_elementor_template_type','wp-page'),(1989,2262,'_elementor_version','3.9.0'),(1990,2262,'_wp_page_template','elementor_canvas'),(1991,2262,'_elementor_data','[{\"id\":\"638551d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"10f834f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"e37e7f2\"}],\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0},\"elements\":[{\"id\":\"a808755\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}]},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4069cc7\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"b849f95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"df56f06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sale Products\",\"align\":\"center\",\"title_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec00d4f\",\"elType\":\"widget\",\"settings\":{\"query_not_found_text\":\"No Posts Found!\",\"layout_filters\":\"\",\"layout_pagination\":\"\",\"grid_elements\":[{\"_id\":\"e49138e\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"d8ef0e7\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"add-to-cart\",\"_id\":\"33d399d\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\",\"query_posts_per_page\":6,\"layout_gutter_vr\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color_hr\":\"#333333\",\"title_transition_duration\":0.5,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"categories_color_hr\":\"#CD98CC\",\"categories_typography_typography\":\"custom\",\"categories_typography_font_family\":\"Poppins\",\"categories_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"categories_typography_font_weight\":\"400\",\"product_status_os_bg_color\":\"#FF4F40\",\"product_status_typography_typography\":\"custom\",\"product_status_typography_font_family\":\"Poppins\",\"product_status_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"product_status_typography_font_weight\":\"400\",\"product_status_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"product_status_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"product_status_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"product_price_color\":\"#FF4F40\",\"product_price_old_color\":\"#FF7E73\",\"product_price_typography_typography\":\"custom\",\"product_price_typography_font_family\":\"Poppins\",\"product_price_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"product_price_typography_font_weight\":\"400\",\"add_to_cart_border_color\":\"#FF4F40\",\"add_to_cart_color_hr\":\"#FFFFFF\",\"add_to_cart_bg_color_hr\":\"#FF4F40\",\"add_to_cart_border_color_hr\":\"#FF4F40\",\"add_to_cart_transition_duration\":0.3,\"add_to_cart_typography_typography\":\"custom\",\"add_to_cart_typography_font_family\":\"Poppins\",\"add_to_cart_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"add_to_cart_typography_font_weight\":\"400\",\"add_to_cart_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"add_to_cart_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"30\",\"bottom\":\"8\",\"left\":\"30\",\"isLinked\":false},\"add_to_cart_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"product_price_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"cross_sell_heading\":\"You may be interested in...\",\"upsell_heading\":\"You may also like...\",\"sort_heading\":\"Shop\",\"sort_and_results_count\":\"\",\"product_rating_color\":\"#FF4F40\",\"product_rating_score_color\":\"#FF4F40\",\"product_status_ft_bg_color\":\"#FF4F40\",\"layout_columns_tablet\":\"2\",\"sort_and_results_count_tablet\":\"\",\"sort_and_results_count_mobile\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"product_price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"add_to_cart_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"add_to_cart_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"25\",\"bottom\":\"7\",\"left\":\"25\",\"isLinked\":false},\"lightbox_typography_font_family\":\"Roboto\",\"lightbox_typography_font_size\":{\"unit\":\"px\",\"size\":88,\"sizes\":[]},\"lightbox_typography_font_weight\":\"400\",\"sort_title_color\":\"#FFFFFF\",\"results_color\":\"#FFFFFF\",\"sorting_color\":\"#2D2D2D\",\"grid_linked_products_heading\":\"You may be interested in...\",\"query_manual_products\":[\"53\",\"83\",\"364\",\"404\",\"407\",\"409\"]},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(1992,2262,'_elementor_page_assets','a:0:{}'),(1994,2263,'_elementor_edit_mode','builder'),(1995,2263,'_elementor_template_type','wp-page'),(1996,2263,'_elementor_version','3.9.0'),(1997,2263,'_wp_page_template','elementor_canvas'),(1998,2263,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}]},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1999,2263,'_elementor_page_assets','a:0:{}'),(2002,2264,'_elementor_edit_mode','builder'),(2003,2264,'_elementor_template_type','wp-page'),(2004,2264,'_elementor_version','3.9.0'),(2005,2264,'_wp_page_template','elementor_canvas'),(2006,2264,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}]},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2007,2264,'_elementor_page_assets','a:0:{}'),(2009,2265,'_elementor_edit_mode','builder'),(2010,2265,'_elementor_template_type','wp-page'),(2011,2265,'_elementor_version','3.9.0'),(2012,2265,'_wp_page_template','elementor_canvas'),(2013,2265,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}]},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2014,2265,'_elementor_page_assets','a:0:{}'),(2016,2266,'_elementor_edit_mode','builder'),(2017,2266,'_elementor_template_type','wp-page'),(2018,2266,'_elementor_version','3.9.0'),(2019,2266,'_wp_page_template','elementor_canvas'),(2020,2266,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2021,2266,'_elementor_page_assets','a:0:{}'),(2024,2267,'_elementor_edit_mode','builder'),(2025,2267,'_elementor_template_type','wp-page'),(2026,2267,'_elementor_version','3.9.0'),(2027,2267,'_wp_page_template','elementor_canvas'),(2028,2267,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2029,2267,'_elementor_page_assets','a:0:{}'),(2031,2268,'_elementor_edit_mode','builder'),(2032,2268,'_elementor_template_type','wp-page'),(2033,2268,'_elementor_version','3.9.0'),(2034,2268,'_wp_page_template','elementor_canvas'),(2035,2268,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2036,2268,'_elementor_page_assets','a:0:{}'),(2038,2269,'_elementor_edit_mode','builder'),(2039,2269,'_elementor_template_type','wp-page'),(2040,2269,'_elementor_version','3.9.0'),(2041,2269,'_wp_page_template','elementor_canvas'),(2042,2269,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2043,2269,'_elementor_page_assets','a:0:{}'),(2046,2270,'_elementor_edit_mode','builder'),(2047,2270,'_elementor_template_type','wp-page'),(2048,2270,'_elementor_version','3.9.0'),(2049,2270,'_wp_page_template','elementor_canvas'),(2050,2270,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2051,2270,'_elementor_page_assets','a:0:{}'),(2053,2271,'_elementor_edit_mode','builder'),(2054,2271,'_elementor_template_type','wp-page'),(2055,2271,'_elementor_version','3.9.0'),(2056,2271,'_wp_page_template','elementor_canvas'),(2057,2271,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2058,2271,'_elementor_page_assets','a:0:{}'),(2060,2272,'_elementor_edit_mode','builder'),(2061,2272,'_elementor_template_type','wp-page'),(2062,2272,'_elementor_version','3.9.0'),(2063,2272,'_wp_page_template','elementor_canvas'),(2064,2272,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2065,2272,'_elementor_page_assets','a:0:{}'),(2075,2274,'_elementor_edit_mode','builder'),(2076,2274,'_elementor_template_type','wp-page'),(2077,2274,'_elementor_version','3.9.0'),(2078,2274,'_wp_page_template','elementor_canvas'),(2079,2274,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2080,2274,'_elementor_page_assets','a:0:{}'),(2081,2275,'_elementor_edit_mode','builder'),(2082,2275,'_elementor_template_type','wp-page'),(2083,2275,'_elementor_version','3.9.0'),(2084,2275,'_wp_page_template','elementor_canvas'),(2085,2275,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2086,2275,'_elementor_page_assets','a:0:{}'),(2087,2276,'_elementor_edit_mode','builder'),(2088,2276,'_elementor_template_type','wp-page'),(2089,2276,'_elementor_version','3.9.0'),(2090,2276,'_wp_page_template','elementor_canvas'),(2091,2276,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"abc3894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscription Management Software\",\"align\":\"center\",\"title_color\":\"#000000B5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2092,2276,'_elementor_page_assets','a:0:{}'),(2094,2277,'_elementor_edit_mode','builder'),(2095,2277,'_elementor_template_type','wp-page'),(2096,2277,'_elementor_version','3.9.0'),(2097,2277,'_wp_page_template','elementor_canvas'),(2098,2277,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"abc3894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscription Management Software\",\"align\":\"center\",\"title_color\":\"#000000B5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2099,2277,'_elementor_page_assets','a:0:{}'),(2101,2278,'_elementor_edit_mode','builder'),(2102,2278,'_elementor_template_type','wp-page'),(2103,2278,'_elementor_version','3.9.0'),(2104,2278,'_wp_page_template','elementor_canvas'),(2105,2278,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"abc3894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscription Management Software\",\"align\":\"center\",\"title_color\":\"#000000B5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2106,2278,'_elementor_page_assets','a:0:{}'),(2108,2279,'_elementor_edit_mode','builder'),(2109,2279,'_elementor_template_type','wp-page'),(2110,2279,'_elementor_version','3.9.0'),(2111,2279,'_wp_page_template','elementor_canvas'),(2112,2279,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"abc3894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscription Management Software\",\"align\":\"center\",\"title_color\":\"#000000B5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2113,2279,'_elementor_page_assets','a:0:{}'),(2116,2280,'_elementor_edit_mode','builder'),(2117,2280,'_elementor_template_type','wp-page'),(2118,2280,'_elementor_version','3.9.0'),(2119,2280,'_wp_page_template','elementor_canvas'),(2120,2280,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"abc3894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscription Management Software\",\"align\":\"center\",\"title_color\":\"#000000B5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2121,2280,'_elementor_page_assets','a:0:{}'),(2123,2281,'_elementor_edit_mode','builder'),(2124,2281,'_elementor_template_type','wp-page'),(2125,2281,'_elementor_version','3.9.0'),(2126,2281,'_wp_page_template','elementor_canvas'),(2127,2281,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"abc3894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscription Management Software\",\"align\":\"center\",\"title_color\":\"#000000B5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2128,2281,'_elementor_page_assets','a:0:{}'),(2130,2282,'_elementor_edit_mode','builder'),(2131,2282,'_elementor_template_type','wp-page'),(2132,2282,'_elementor_version','3.9.0'),(2133,2282,'_wp_page_template','elementor_canvas'),(2134,2282,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"abc3894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscription Management Software\",\"align\":\"center\",\"title_color\":\"#000000B5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72cd62d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2135,2282,'_elementor_page_assets','a:0:{}'),(2138,2283,'_elementor_edit_mode','builder'),(2139,2283,'_elementor_template_type','wp-page'),(2140,2283,'_elementor_version','3.9.0'),(2141,2283,'_wp_page_template','elementor_canvas'),(2142,2283,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"abc3894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscription Management Software\",\"align\":\"center\",\"title_color\":\"#000000B5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72cd62d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2143,2283,'_elementor_page_assets','a:0:{}'),(2145,2284,'_elementor_edit_mode','builder'),(2146,2284,'_elementor_template_type','wp-page'),(2147,2284,'_elementor_version','3.9.0'),(2148,2284,'_wp_page_template','elementor_canvas'); INSERT INTO `wp_postmeta` VALUES (2149,2284,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"abc3894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscription Management Software\",\"align\":\"center\",\"title_color\":\"#000000B5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72cd62d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2150,2284,'_elementor_page_assets','a:0:{}'),(2152,2285,'_elementor_edit_mode','builder'),(2153,2285,'_elementor_template_type','wp-page'),(2154,2285,'_elementor_version','3.9.0'),(2155,2285,'_wp_page_template','elementor_canvas'),(2156,2285,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"abc3894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscription Management Software\",\"align\":\"center\",\"title_color\":\"#000000B5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72cd62d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Magazine\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"eCommerce\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Membership\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2157,2285,'_elementor_page_assets','a:0:{}'),(2160,2286,'_elementor_edit_mode','builder'),(2161,2286,'_elementor_template_type','wp-page'),(2162,2286,'_elementor_version','3.9.0'),(2163,2286,'_wp_page_template','elementor_canvas'),(2164,2286,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"abc3894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscription Management Software\",\"align\":\"center\",\"title_color\":\"#000000B5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72cd62d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Magazine\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"eCommerce\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Membership\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2165,2286,'_elementor_page_assets','a:0:{}'),(2167,2287,'_elementor_edit_mode','builder'),(2168,2287,'_elementor_template_type','wp-page'),(2169,2287,'_elementor_version','3.9.0'),(2170,2287,'_wp_page_template','elementor_canvas'),(2171,2287,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"abc3894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscription Management Software\",\"align\":\"center\",\"title_color\":\"#000000B5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72cd62d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Magazine\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"eCommerce\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Membership\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2172,2287,'_elementor_page_assets','a:0:{}'),(2174,2288,'_elementor_edit_mode','builder'),(2175,2288,'_elementor_template_type','wp-page'),(2176,2288,'_elementor_version','3.9.0'),(2177,2288,'_wp_page_template','elementor_canvas'),(2178,2288,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"abc3894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscription Management Software\",\"align\":\"center\",\"title_color\":\"#000000B5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72cd62d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/plans\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Magazine\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"eCommerce\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Membership\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2179,2288,'_elementor_page_assets','a:0:{}'),(2182,2289,'_edit_last','1'),(2183,2289,'_wp_page_template','default'),(2184,2289,'_edit_lock','1673338452:1'),(2185,2289,'_elementor_edit_mode','builder'),(2186,2289,'_elementor_template_type','wp-page'),(2187,2289,'_elementor_version','3.9.0'),(2194,2293,'_wp_page_template','default'),(2195,2293,'_elementor_edit_mode','builder'),(2196,2293,'_elementor_template_type','wp-page'),(2197,2293,'_elementor_version','3.9.0'),(2198,2294,'_wp_page_template','default'),(2199,2294,'_elementor_edit_mode','builder'),(2200,2294,'_elementor_template_type','wp-page'),(2201,2294,'_elementor_version','3.9.0'),(2202,2289,'_elementor_data','[{\"id\":\"52dc188\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"0fff7b0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"9b0c2b8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dbd92e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6a3b178\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional Plan\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3c4d98\",\"elType\":\"widget\",\"settings\":{\"html\":\"<iframe src=\\\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/2939517a-580e-4203-bc7b-433f62fe55c3\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\\\" height=\\\"2500\\\" width=\\\"300px\\\"><\\/iframe>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false}]'),(2203,2295,'_wp_page_template','default'),(2204,2295,'_elementor_edit_mode','builder'),(2205,2295,'_elementor_template_type','wp-page'),(2206,2295,'_elementor_version','3.9.0'),(2207,2295,'_elementor_data','[{\"id\":\"52dc188\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"0fff7b0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"9b0c2b8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dbd92e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6a3b178\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3c4d98\",\"elType\":\"widget\",\"settings\":{\"html\":\"<iframe src=\\\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/2939517a-580e-4203-bc7b-433f62fe55c3\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\\\" height=\\\"100%\\\" width=\\\"300px\\\"><\\/iframe>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false}]'),(2208,2289,'_elementor_page_assets','a:0:{}'),(2210,2296,'_wp_page_template','default'),(2211,2296,'_elementor_edit_mode','builder'),(2212,2296,'_elementor_template_type','wp-page'),(2213,2296,'_elementor_version','3.9.0'),(2214,2296,'_elementor_data','[{\"id\":\"52dc188\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"0fff7b0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"9b0c2b8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dbd92e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6a3b178\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3c4d98\",\"elType\":\"widget\",\"settings\":{\"html\":\"<iframe src=\\\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/2939517a-580e-4203-bc7b-433f62fe55c3\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\\\" height=\\\"100%\\\" width=\\\"300px\\\"><\\/iframe>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false}]'),(2215,2296,'_elementor_page_assets','a:0:{}'),(2217,2297,'_wp_page_template','default'),(2218,2297,'_elementor_edit_mode','builder'),(2219,2297,'_elementor_template_type','wp-page'),(2220,2297,'_elementor_version','3.9.0'),(2221,2297,'_elementor_data','[{\"id\":\"52dc188\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"0fff7b0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"9b0c2b8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dbd92e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6a3b178\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3c4d98\",\"elType\":\"widget\",\"settings\":{\"html\":\"<iframe src=\\\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/2939517a-580e-4203-bc7b-433f62fe55c3\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\\\" height=\\\"100%\\\" width=\\\"300px\\\"><\\/iframe>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false}]'),(2222,2297,'_elementor_page_assets','a:0:{}'),(2224,2298,'_wp_page_template','default'),(2225,2298,'_elementor_edit_mode','builder'),(2226,2298,'_elementor_template_type','wp-page'),(2227,2298,'_elementor_version','3.9.0'),(2228,2298,'_elementor_data','[{\"id\":\"52dc188\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"0fff7b0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"9b0c2b8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dbd92e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6a3b178\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3c4d98\",\"elType\":\"widget\",\"settings\":{\"html\":\"<iframe src=\\\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/2939517a-580e-4203-bc7b-433f62fe55c3\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\\\" height=\\\"2500\\\" width=\\\"300px\\\"><\\/iframe>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false}]'),(2229,2298,'_elementor_page_assets','a:0:{}'),(2232,2299,'_wp_page_template','default'),(2233,2299,'_elementor_edit_mode','builder'),(2234,2299,'_elementor_template_type','wp-page'),(2235,2299,'_elementor_version','3.9.0'),(2236,2299,'_elementor_data','[{\"id\":\"52dc188\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"0fff7b0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"9b0c2b8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dbd92e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6a3b178\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3c4d98\",\"elType\":\"widget\",\"settings\":{\"html\":\"<iframe src=\\\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/2939517a-580e-4203-bc7b-433f62fe55c3\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\\\" height=\\\"2500\\\" width=\\\"300px\\\"><\\/iframe>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false}]'),(2237,2299,'_elementor_page_assets','a:0:{}'),(2239,2300,'_wp_page_template','default'),(2240,2300,'_elementor_edit_mode','builder'),(2241,2300,'_elementor_template_type','wp-page'),(2242,2300,'_elementor_version','3.9.0'),(2243,2300,'_elementor_data','[{\"id\":\"52dc188\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"0fff7b0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"9b0c2b8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dbd92e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6a3b178\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3c4d98\",\"elType\":\"widget\",\"settings\":{\"html\":\"<iframe src=\\\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/2939517a-580e-4203-bc7b-433f62fe55c3\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\\\" height=\\\"2500\\\" width=\\\"300px\\\"><\\/iframe>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false}]'),(2244,2300,'_elementor_page_assets','a:0:{}'),(2246,2301,'_wp_page_template','default'),(2247,2301,'_elementor_edit_mode','builder'),(2248,2301,'_elementor_template_type','wp-page'),(2249,2301,'_elementor_version','3.9.0'),(2250,2301,'_elementor_data','[{\"id\":\"52dc188\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"0fff7b0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"9b0c2b8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dbd92e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6a3b178\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional Plan\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3c4d98\",\"elType\":\"widget\",\"settings\":{\"html\":\"<iframe src=\\\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/2939517a-580e-4203-bc7b-433f62fe55c3\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\\\" height=\\\"2500\\\" width=\\\"300px\\\"><\\/iframe>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false}]'),(2251,2301,'_elementor_page_assets','a:0:{}'),(2254,2302,'_elementor_edit_mode','builder'),(2255,2302,'_elementor_template_type','wp-page'),(2256,2302,'_elementor_version','3.9.0'),(2257,2302,'_wp_page_template','default'),(2258,2302,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Condensed\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/2939517a-580e-4203-bc7b-433f62fe55c3\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/47669555-7ea2-4125-bda7-0a6e6c0919d8\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2259,2302,'_elementor_page_assets','a:0:{}'),(2261,2303,'_elementor_edit_mode','builder'),(2262,2303,'_elementor_template_type','wp-page'),(2263,2303,'_elementor_version','3.9.0'),(2264,2303,'_wp_page_template','default'),(2265,2303,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Condensed\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/2939517a-580e-4203-bc7b-433f62fe55c3\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/47669555-7ea2-4125-bda7-0a6e6c0919d8\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2266,2303,'_elementor_page_assets','a:0:{}'),(2268,2304,'_elementor_edit_mode','builder'),(2269,2304,'_elementor_template_type','wp-page'),(2270,2304,'_elementor_version','3.9.0'),(2271,2304,'_wp_page_template','default'),(2272,2304,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Condensed\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/47669555-7ea2-4125-bda7-0a6e6c0919d8\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2273,2304,'_elementor_page_assets','a:0:{}'),(2276,2305,'_elementor_edit_mode','builder'),(2277,2305,'_elementor_template_type','wp-page'),(2278,2305,'_elementor_version','3.9.0'),(2279,2305,'_wp_page_template','elementor_canvas'),(2280,2305,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"abc3894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscription Management Software\",\"align\":\"center\",\"title_color\":\"#000000B5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72cd62d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/plans\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Magazine\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"eCommerce\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Membership\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2281,2305,'_elementor_page_assets','a:0:{}'),(2283,2306,'_elementor_edit_mode','builder'),(2284,2306,'_elementor_template_type','wp-page'),(2285,2306,'_elementor_version','3.9.0'),(2286,2306,'_wp_page_template','elementor_canvas'),(2287,2306,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"abc3894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscription Management Software\",\"align\":\"center\",\"title_color\":\"#000000B5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72cd62d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/plans\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Magazine\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"eCommerce\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Membership\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2288,2306,'_elementor_page_assets','a:0:{}'),(2290,2307,'_elementor_edit_mode','builder'),(2291,2307,'_elementor_template_type','wp-page'),(2292,2307,'_elementor_version','3.9.0'),(2293,2307,'_wp_page_template','elementor_canvas'),(2294,2307,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"abc3894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscription Management Software\",\"align\":\"center\",\"title_color\":\"#000000B5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72cd62d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/plans\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Magazine\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"eCommerce\",\"content_title_tag\":\"h2\",\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/shop\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Membership\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2295,2307,'_elementor_page_assets','a:0:{}'),(2298,409,'_wp_old_slug','weekly-subscription'),(2299,2099,'_wp_old_slug','test-product-2'),(2300,2309,'_wp_attached_file','2022/06/colorful-socks-hanging-clothesline-image-isolated-white-background-47068759.jpg'),(2301,2309,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:627;s:4:\"file\";s:87:\"2022/06/colorful-socks-hanging-clothesline-image-isolated-white-background-47068759.jpg\";s:8:\"filesize\";i:83427;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:87:\"colorful-socks-hanging-clothesline-image-isolated-white-background-47068759-300x145.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15635;}s:5:\"large\";a:5:{s:4:\"file\";s:88:\"colorful-socks-hanging-clothesline-image-isolated-white-background-47068759-1024x494.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:494;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78121;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:87:\"colorful-socks-hanging-clothesline-image-isolated-white-background-47068759-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10071;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:87:\"colorful-socks-hanging-clothesline-image-isolated-white-background-47068759-768x370.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50707;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:87:\"colorful-socks-hanging-clothesline-image-isolated-white-background-47068759-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20470;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:87:\"colorful-socks-hanging-clothesline-image-isolated-white-background-47068759-600x289.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:289;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36150;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:87:\"colorful-socks-hanging-clothesline-image-isolated-white-background-47068759-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7440;}}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:27:\"(c) Paleka | Dreamstime.com\";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:{}}}'),(2302,2310,'_wp_attached_file','2022/12/7_ca8724d4-ae51-4375-b0fc-8388b123737d_1024x1024.webp'),(2303,2310,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:683;s:6:\"height\";i:1024;s:4:\"file\";s:61:\"2022/12/7_ca8724d4-ae51-4375-b0fc-8388b123737d_1024x1024.webp\";s:8:\"filesize\";i:51898;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:61:\"7_ca8724d4-ae51-4375-b0fc-8388b123737d_1024x1024-200x300.webp\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5064;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:61:\"7_ca8724d4-ae51-4375-b0fc-8388b123737d_1024x1024-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3298;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:61:\"7_ca8724d4-ae51-4375-b0fc-8388b123737d_1024x1024-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9396;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:61:\"7_ca8724d4-ae51-4375-b0fc-8388b123737d_1024x1024-600x900.webp\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:29686;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:61:\"7_ca8724d4-ae51-4375-b0fc-8388b123737d_1024x1024-100x100.webp\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:1956;}}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:{}}}'),(2304,2311,'_wp_attached_file','2022/12/colorful-socks-hanging-clothesline-image-isolated-white-background-47068759.jpg'),(2305,2311,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:627;s:4:\"file\";s:87:\"2022/12/colorful-socks-hanging-clothesline-image-isolated-white-background-47068759.jpg\";s:8:\"filesize\";i:83427;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:87:\"colorful-socks-hanging-clothesline-image-isolated-white-background-47068759-300x145.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15635;}s:5:\"large\";a:5:{s:4:\"file\";s:88:\"colorful-socks-hanging-clothesline-image-isolated-white-background-47068759-1024x494.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:494;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78121;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:87:\"colorful-socks-hanging-clothesline-image-isolated-white-background-47068759-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10071;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:87:\"colorful-socks-hanging-clothesline-image-isolated-white-background-47068759-768x370.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50707;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:87:\"colorful-socks-hanging-clothesline-image-isolated-white-background-47068759-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20470;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:87:\"colorful-socks-hanging-clothesline-image-isolated-white-background-47068759-600x289.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:289;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36150;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:87:\"colorful-socks-hanging-clothesline-image-isolated-white-background-47068759-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7440;}}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:27:\"(c) Paleka | Dreamstime.com\";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:{}}}'),(2306,2312,'_wp_attached_file','2022/12/more-orphan-socks-odd-whose-mates-have-been-lost-hanging-clothesline-shot-white-background-35663687.jpg'),(2307,2312,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:111:\"2022/12/more-orphan-socks-odd-whose-mates-have-been-lost-hanging-clothesline-shot-white-background-35663687.jpg\";s:8:\"filesize\";i:47983;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:111:\"more-orphan-socks-odd-whose-mates-have-been-lost-hanging-clothesline-shot-white-background-35663687-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14819;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:111:\"more-orphan-socks-odd-whose-mates-have-been-lost-hanging-clothesline-shot-white-background-35663687-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10443;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:111:\"more-orphan-socks-odd-whose-mates-have-been-lost-hanging-clothesline-shot-white-background-35663687-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48922;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:111:\"more-orphan-socks-odd-whose-mates-have-been-lost-hanging-clothesline-shot-white-background-35663687-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23357;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:111:\"more-orphan-socks-odd-whose-mates-have-been-lost-hanging-clothesline-shot-white-background-35663687-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35544;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:111:\"more-orphan-socks-odd-whose-mates-have-been-lost-hanging-clothesline-shot-white-background-35663687-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7242;}}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:{}}}'),(2308,2313,'_wp_attached_file','2022/12/odd-socks-29336624.jpg'),(2309,2313,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:30:\"2022/12/odd-socks-29336624.jpg\";s:8:\"filesize\";i:31003;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"odd-socks-29336624-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9052;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"odd-socks-29336624-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6208;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"odd-socks-29336624-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32281;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:30:\"odd-socks-29336624-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14414;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:30:\"odd-socks-29336624-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22795;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:30:\"odd-socks-29336624-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3861;}}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:{}}}'),(2310,2314,'_wp_attached_file','2022/06/images.jpeg'),(2311,2314,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:183;s:6:\"height\";i:275;s:4:\"file\";s:19:\"2022/06/images.jpeg\";s:8:\"filesize\";i:7161;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"images-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6574;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:19:\"images-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3894;}}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:{}}}'),(2312,2315,'_wp_attached_file','2022/06/shirt_378037390_1000.jpg'),(2313,2315,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:667;s:6:\"height\";i:1000;s:4:\"file\";s:32:\"2022/06/shirt_378037390_1000.jpg\";s:8:\"filesize\";i:23554;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"shirt_378037390_1000-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7147;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"shirt_378037390_1000-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4115;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:32:\"shirt_378037390_1000-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9663;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:32:\"shirt_378037390_1000-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32979;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:32:\"shirt_378037390_1000-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2765;}}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:{}}}'),(2314,2316,'_wp_attached_file','2022/06/TP2225..jpg'),(2315,2316,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1400;s:6:\"height\";i:1800;s:4:\"file\";s:19:\"2022/06/TP2225..jpg\";s:8:\"filesize\";i:193046;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"TP2225.-233x300.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17172;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"TP2225.-796x1024.jpg\";s:5:\"width\";i:796;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91153;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"TP2225.-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12928;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"TP2225.-768x987.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:987;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84220;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"TP2225.-1195x1536.jpg\";s:5:\"width\";i:1195;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:229656;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:19:\"TP2225.-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19176;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:19:\"TP2225.-600x771.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:771;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52582;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:19:\"TP2225.-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11726;}}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:\"1\";s:8:\"keywords\";a:0:{}}}'),(2316,409,'_product_image_gallery','2316,2315,2314'),(2317,2317,'_elementor_edit_mode','builder'),(2318,2317,'_elementor_template_type','wp-page'),(2319,2317,'_elementor_version','3.9.0'),(2320,2317,'_wp_page_template','default'),(2321,2317,'_elementor_data',''),(2322,2317,'_elementor_page_settings',''),(2323,1680,'wpr-mega-menu-item',''),(2324,2099,'_product_image_gallery','2312,2313,2311,2309,2446'),(2325,2318,'_edit_lock','1673349348:1'),(2326,2318,'_edit_last','1'),(2327,2319,'_elementor_edit_mode','builder'),(2328,2319,'_elementor_template_type','wp-page'),(2329,2319,'_elementor_version','3.9.0'),(2330,2319,'_wp_page_template','default'),(2331,2319,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Condensed\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/47669555-7ea2-4125-bda7-0a6e6c0919d8\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2332,2319,'_elementor_page_assets','a:0:{}'),(2334,2320,'_elementor_edit_mode','builder'),(2335,2320,'_elementor_template_type','wp-page'),(2336,2320,'_elementor_version','3.9.0'),(2337,2320,'_wp_page_template','default'),(2338,2320,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Condensed\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/47669555-7ea2-4125-bda7-0a6e6c0919d8\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2339,2320,'_elementor_page_assets','a:0:{}'),(2341,2321,'_elementor_edit_mode','builder'),(2342,2321,'_elementor_template_type','wp-page'),(2343,2321,'_elementor_version','3.9.0'),(2344,2321,'_wp_page_template','default'),(2345,2321,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/47669555-7ea2-4125-bda7-0a6e6c0919d8\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2346,2321,'_elementor_page_assets','a:0:{}'),(2348,2318,'_wp_page_template','default'),(2349,2318,'_elementor_edit_mode','builder'),(2350,2318,'_elementor_template_type','wp-page'),(2351,2318,'_elementor_version','3.9.0'),(2352,2323,'_wp_page_template','default'),(2353,2323,'_elementor_edit_mode','builder'),(2354,2323,'_elementor_template_type','wp-page'),(2355,2323,'_elementor_version','3.9.0'),(2356,2324,'_wp_page_template','default'),(2357,2324,'_elementor_edit_mode','builder'),(2358,2324,'_elementor_template_type','wp-page'),(2359,2324,'_elementor_version','3.9.0'),(2360,2318,'_elementor_data','[{\"id\":\"1ac3a9fa1\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#F6F6F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"bg_image\":{\"id\":2329,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-21.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"78bd98d\",\"repeater_bg_image\":{\"id\":2330,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-22.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"64d2711\",\"repeater_bg_image\":{\"id\":2331,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-23.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b023980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34392f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Membership for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b59516d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ae5d61d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"bg_image\":{\"id\":2326,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-18.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"8623327\",\"repeater_bg_image\":{\"id\":2327,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-19.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9508d57\",\"repeater_bg_image\":{\"id\":2328,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-20.png\"}}]},\"elements\":[{\"id\":\"396d96cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d8068d5\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Basic\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Basic\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#FD7B03\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FD7B03\",\"feature_tooltip_text\":\"Random Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Calendar Billing\",\"feature_icon_color\":\"#FD7B03\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Usage-based (Metered) Billing\",\"feature_icon_color\":\"#FD7B03\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\",\"_id\":\"0c61060\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#FD7B03\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"67.99\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555E6\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FD7B03\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#000000\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FD7B03\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#000000\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#FD7B03\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"cyrcle\",\"badge_hr_position\":\"left\",\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_hover_bg_color_color\":\"#3444E6\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"},\"badge_cyrcle_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"period_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"heading_title_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"4e132327\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36b0bfe2\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Standard\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Standard\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"249\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_style\":\"none\",\"badge_title\":\"Save \\u20ac 50\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#4C5BEE\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#4C5BEE\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FFFFFF\",\"feature_bg_color\":\"#4C5BEE\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#4C5BEE\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#FFFFFF\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#FFFFFF\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"#FFFFFF\",\"btn_hover_color\":\"#4C5BEE\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#FFFFFF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"period_hr_position\":\"beside\",\"feature_align\":\"left\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FFFFFF00\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"btn_typography_font_weight\":\"600\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"heading_icon_color\":\"\",\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_color\":\"#E7E7E7\",\"period_color\":\"#4C5BEE\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#FFFFFF\",\"text_typography_font_weight\":\"600\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"_background_color\":\"#FD7B03\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"btn_border_type\":\"solid\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"3999bdf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"background_hover_color\":\"#4C5BEE\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"39f7bb66\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Premium\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Premium\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#FD7B03\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FD7B03\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Calendar Billing\",\"feature_icon_color\":\"#FD7B03\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Usage-based (Metered) Billing\",\"feature_icon_color\":\"#FD7B03\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"99\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FD7B03\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#000000\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FD7B03\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#000000\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#FD7B03\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"none\",\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FD7B03\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#3444E6\",\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_weight\":\"600\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2361,2325,'_wp_page_template','default'),(2362,2325,'_elementor_edit_mode','builder'),(2363,2325,'_elementor_template_type','wp-page'),(2364,2325,'_elementor_version','3.9.0'),(2365,2325,'_elementor_data','[{\"id\":\"d702d8d\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c6bc19\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b688441\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Membership for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b59516d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"781416f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"deb9e22\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"dfe536f\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Basic\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2f7ff45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62944f2\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Standard\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"3d82a4e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"740a4c5\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Premium\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/47669555-7ea2-4125-bda7-0a6e6c0919d8\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2366,2318,'_elementor_page_assets','a:0:{}'),(2369,2326,'_wp_attached_file','2023/01/placeholder-18.png'),(2370,2326,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/01/placeholder-18.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-18-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-18-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-18-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-18-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"placeholder-18-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4757;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"placeholder-18-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8989;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-18-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1468;}}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:{}}}'),(2371,2326,'_elementor_source_image_hash','6f6081793ca9bfaa096d1aadeee04ac85ab4e6b2'),(2372,2327,'_wp_attached_file','2023/01/placeholder-19.png'),(2373,2327,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/01/placeholder-19.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-19-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-19-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-19-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-19-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"placeholder-19-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4757;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"placeholder-19-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8989;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-19-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1468;}}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:{}}}'),(2374,2327,'_elementor_source_image_hash','6f6081793ca9bfaa096d1aadeee04ac85ab4e6b2'),(2375,2328,'_wp_attached_file','2023/01/placeholder-20.png'),(2376,2328,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/01/placeholder-20.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-20-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-20-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-20-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-20-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"placeholder-20-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4757;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"placeholder-20-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8989;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-20-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1468;}}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:{}}}'),(2377,2328,'_elementor_source_image_hash','6f6081793ca9bfaa096d1aadeee04ac85ab4e6b2'),(2378,2329,'_wp_attached_file','2023/01/placeholder-21.png'),(2379,2329,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/01/placeholder-21.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-21-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-21-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-21-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-21-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"placeholder-21-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4757;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"placeholder-21-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8989;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-21-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1468;}}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:{}}}'),(2380,2329,'_elementor_source_image_hash','6f6081793ca9bfaa096d1aadeee04ac85ab4e6b2'),(2381,2330,'_wp_attached_file','2023/01/placeholder-22.png'),(2382,2330,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/01/placeholder-22.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-22-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-22-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-22-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-22-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"placeholder-22-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4757;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"placeholder-22-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8989;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-22-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1468;}}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:{}}}'),(2383,2330,'_elementor_source_image_hash','6f6081793ca9bfaa096d1aadeee04ac85ab4e6b2'),(2384,2331,'_wp_attached_file','2023/01/placeholder-23.png'),(2385,2331,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/01/placeholder-23.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-23-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-23-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-23-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-23-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"placeholder-23-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4757;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"placeholder-23-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8989;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-23-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1468;}}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:{}}}'),(2386,2331,'_elementor_source_image_hash','6f6081793ca9bfaa096d1aadeee04ac85ab4e6b2'),(2387,2332,'_wp_page_template','default'),(2388,2332,'_elementor_edit_mode','builder'),(2389,2332,'_elementor_template_type','wp-page'),(2390,2332,'_elementor_version','3.9.0'),(2391,2332,'_elementor_data','[{\"id\":\"d702d8d\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c6bc19\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b688441\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Membership for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b59516d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"781416f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"deb9e22\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"dfe536f\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Basic\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2f7ff45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62944f2\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Standard\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"3d82a4e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"740a4c5\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Premium\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/47669555-7ea2-4125-bda7-0a6e6c0919d8\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2392,2332,'_elementor_page_assets','a:0:{}'),(2394,2333,'_wp_page_template','default'),(2395,2333,'_elementor_edit_mode','builder'),(2396,2333,'_elementor_template_type','wp-page'),(2397,2333,'_elementor_version','3.9.0'),(2398,2333,'_elementor_data','[{\"id\":\"d702d8d\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c6bc19\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b688441\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Membership for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b59516d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"781416f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"deb9e22\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"dfe536f\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Basic\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2f7ff45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62944f2\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Standard\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"3d82a4e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"740a4c5\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Premium\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/47669555-7ea2-4125-bda7-0a6e6c0919d8\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2399,2333,'_elementor_page_assets','a:0:{}'),(2401,2334,'_wp_page_template','default'),(2402,2334,'_elementor_edit_mode','builder'),(2403,2334,'_elementor_template_type','wp-page'),(2404,2334,'_elementor_version','3.9.0'),(2405,2334,'_elementor_data','[{\"id\":\"1ac3a9fa1\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#F6F6F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"bg_image\":{\"id\":2329,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-21.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"78bd98d\",\"repeater_bg_image\":{\"id\":2330,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-22.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"64d2711\",\"repeater_bg_image\":{\"id\":2331,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-23.png\"}}]},\"elements\":[{\"id\":\"5b023980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34392f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Membership for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b59516d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ae5d61d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"bg_image\":{\"id\":2326,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-18.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"8623327\",\"repeater_bg_image\":{\"id\":2327,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-19.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9508d57\",\"repeater_bg_image\":{\"id\":2328,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-20.png\"}}]},\"elements\":[{\"id\":\"396d96cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d8068d5\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Basic\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Basic\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Unlimited Calls\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Free Hosting\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Random Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"500 MB of Storage Space\",\"feature_icon_color\":\"#BCBCBC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough\":\"yes\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#BCBCBC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough\":\"yes\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"67.99\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3343EC\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#3343EC\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#959595\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"cyrcle\",\"badge_hr_position\":\"left\",\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#4C5BEE\",\"btn_hover_bg_color_color\":\"#3444E6\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"},\"badge_cyrcle_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"period_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"heading_title_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"4e132327\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36b0bfe2\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Standard\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Standard\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Unlimited Calls\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Free Hosting\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"500 MB of Storage Space\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"249\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_style\":\"none\",\"badge_title\":\"Save \\u20ac 50\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#4C5BEE\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#4C5BEE\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FFFFFF\",\"feature_bg_color\":\"#4C5BEE\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#4C5BEE\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#FFFFFF\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#FFFFFF\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"#FFFFFF\",\"btn_hover_color\":\"#4C5BEE\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#FFFFFF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"period_hr_position\":\"beside\",\"feature_align\":\"left\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FFFFFF00\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"btn_typography_font_weight\":\"600\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"heading_icon_color\":\"\",\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_color\":\"#E7E7E7\",\"period_color\":\"#4C5BEE\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#FFFFFF\",\"text_typography_font_weight\":\"600\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"_background_color\":\"#4C5BEE\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"btn_border_type\":\"solid\"},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"3999bdf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"background_hover_color\":\"#4C5BEE\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"39f7bb66\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Premium\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Premium\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Unlimited Calls\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Free Hosting\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"500 MB of Storage Space\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#BCBCBC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough\":\"yes\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"99\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3343EC\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#3343EC\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#959595\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"none\",\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#4C5BEE\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#3444E6\",\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_weight\":\"600\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2406,2334,'_elementor_page_assets','a:0:{}'),(2409,2335,'_wp_page_template','default'),(2410,2335,'_elementor_edit_mode','builder'),(2411,2335,'_elementor_template_type','wp-page'),(2412,2335,'_elementor_version','3.9.0'),(2413,2335,'_elementor_data','[{\"id\":\"1ac3a9fa1\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#F6F6F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"bg_image\":{\"id\":2329,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-21.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"78bd98d\",\"repeater_bg_image\":{\"id\":2330,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-22.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"64d2711\",\"repeater_bg_image\":{\"id\":2331,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-23.png\"}}]},\"elements\":[{\"id\":\"5b023980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34392f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Membership for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b59516d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ae5d61d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"bg_image\":{\"id\":2326,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-18.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"8623327\",\"repeater_bg_image\":{\"id\":2327,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-19.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9508d57\",\"repeater_bg_image\":{\"id\":2328,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-20.png\"}}]},\"elements\":[{\"id\":\"396d96cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d8068d5\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Basic\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Basic\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Unlimited Calls\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Free Hosting\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Random Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"500 MB of Storage Space\",\"feature_icon_color\":\"#BCBCBC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough\":\"yes\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#BCBCBC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough\":\"yes\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"67.99\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3343EC\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#3343EC\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#959595\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"cyrcle\",\"badge_hr_position\":\"left\",\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#4C5BEE\",\"btn_hover_bg_color_color\":\"#3444E6\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"},\"badge_cyrcle_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"period_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"heading_title_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"4e132327\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36b0bfe2\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Standard\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Standard\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Unlimited Calls\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Free Hosting\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"500 MB of Storage Space\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"249\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_style\":\"none\",\"badge_title\":\"Save \\u20ac 50\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#4C5BEE\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#4C5BEE\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FFFFFF\",\"feature_bg_color\":\"#4C5BEE\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#4C5BEE\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#FFFFFF\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#FFFFFF\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"#FFFFFF\",\"btn_hover_color\":\"#4C5BEE\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#FFFFFF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"period_hr_position\":\"beside\",\"feature_align\":\"left\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FFFFFF00\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"btn_typography_font_weight\":\"600\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"heading_icon_color\":\"\",\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_color\":\"#E7E7E7\",\"period_color\":\"#4C5BEE\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#FFFFFF\",\"text_typography_font_weight\":\"600\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"_background_color\":\"#4C5BEE\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"btn_border_type\":\"solid\"},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"3999bdf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"background_hover_color\":\"#4C5BEE\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"39f7bb66\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Premium\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Premium\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Unlimited Calls\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Free Hosting\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"500 MB of Storage Space\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#BCBCBC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough\":\"yes\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"99\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3343EC\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#3343EC\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#959595\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"none\",\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#4C5BEE\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#3444E6\",\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_weight\":\"600\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2414,2335,'_elementor_page_assets','a:0:{}'),(2416,2336,'_wp_page_template','default'),(2417,2336,'_elementor_edit_mode','builder'),(2418,2336,'_elementor_template_type','wp-page'),(2419,2336,'_elementor_version','3.9.0'),(2420,2336,'_elementor_data','[{\"id\":\"1ac3a9fa1\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#F6F6F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"bg_image\":{\"id\":2329,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-21.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"78bd98d\",\"repeater_bg_image\":{\"id\":2330,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-22.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"64d2711\",\"repeater_bg_image\":{\"id\":2331,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-23.png\"}}]},\"elements\":[{\"id\":\"5b023980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34392f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Membership for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b59516d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ae5d61d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"bg_image\":{\"id\":2326,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-18.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"8623327\",\"repeater_bg_image\":{\"id\":2327,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-19.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9508d57\",\"repeater_bg_image\":{\"id\":2328,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-20.png\"}}]},\"elements\":[{\"id\":\"396d96cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d8068d5\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Basic\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Basic\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Unlimited Calls\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Free Hosting\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Random Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"500 MB of Storage Space\",\"feature_icon_color\":\"#BCBCBC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough\":\"yes\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#BCBCBC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough\":\"yes\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"67.99\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3343EC\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#3343EC\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#959595\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"cyrcle\",\"badge_hr_position\":\"left\",\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#4C5BEE\",\"btn_hover_bg_color_color\":\"#3444E6\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"},\"badge_cyrcle_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"period_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"heading_title_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"4e132327\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36b0bfe2\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Standard\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Standard\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Unlimited Calls\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Free Hosting\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"500 MB of Storage Space\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"249\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_style\":\"none\",\"badge_title\":\"Save \\u20ac 50\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#4C5BEE\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#4C5BEE\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FFFFFF\",\"feature_bg_color\":\"#4C5BEE\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#4C5BEE\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#FFFFFF\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#FFFFFF\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"#FFFFFF\",\"btn_hover_color\":\"#4C5BEE\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#FFFFFF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"period_hr_position\":\"beside\",\"feature_align\":\"left\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FFFFFF00\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"btn_typography_font_weight\":\"600\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"heading_icon_color\":\"\",\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_color\":\"#E7E7E7\",\"period_color\":\"#4C5BEE\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#FFFFFF\",\"text_typography_font_weight\":\"600\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"_background_color\":\"#4C5BEE\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"btn_border_type\":\"solid\"},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"3999bdf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"background_hover_color\":\"#4C5BEE\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"39f7bb66\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Premium\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Premium\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Unlimited Calls\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Free Hosting\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"500 MB of Storage Space\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#BCBCBC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough\":\"yes\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"99\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3343EC\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#3343EC\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#959595\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"none\",\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#4C5BEE\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#3444E6\",\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_weight\":\"600\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2421,2336,'_elementor_page_assets','a:0:{}'),(2423,2337,'_wp_page_template','default'),(2424,2337,'_elementor_edit_mode','builder'),(2425,2337,'_elementor_template_type','wp-page'),(2426,2337,'_elementor_version','3.9.0'),(2427,2337,'_elementor_data','[{\"id\":\"1ac3a9fa1\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#F6F6F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"bg_image\":{\"id\":2329,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-21.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"78bd98d\",\"repeater_bg_image\":{\"id\":2330,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-22.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"64d2711\",\"repeater_bg_image\":{\"id\":2331,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-23.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b023980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34392f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Membership for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b59516d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ae5d61d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"bg_image\":{\"id\":2326,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-18.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"8623327\",\"repeater_bg_image\":{\"id\":2327,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-19.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9508d57\",\"repeater_bg_image\":{\"id\":2328,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-20.png\"}}]},\"elements\":[{\"id\":\"396d96cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d8068d5\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Basic\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Basic\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Unlimited Calls\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Free Hosting\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Random Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"500 MB of Storage Space\",\"feature_icon_color\":\"#BCBCBC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough\":\"yes\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#BCBCBC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough\":\"yes\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"67.99\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3343EC\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#3343EC\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#959595\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"cyrcle\",\"badge_hr_position\":\"left\",\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#4C5BEE\",\"btn_hover_bg_color_color\":\"#3444E6\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"},\"badge_cyrcle_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"period_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"heading_title_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"4e132327\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36b0bfe2\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Standard\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Standard\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Unlimited Calls\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Free Hosting\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"500 MB of Storage Space\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"249\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_style\":\"none\",\"badge_title\":\"Save \\u20ac 50\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#4C5BEE\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#4C5BEE\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FFFFFF\",\"feature_bg_color\":\"#4C5BEE\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#4C5BEE\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#FFFFFF\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#FFFFFF\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"#FFFFFF\",\"btn_hover_color\":\"#4C5BEE\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#FFFFFF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"period_hr_position\":\"beside\",\"feature_align\":\"left\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FFFFFF00\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"btn_typography_font_weight\":\"600\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"heading_icon_color\":\"\",\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_color\":\"#E7E7E7\",\"period_color\":\"#4C5BEE\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#FFFFFF\",\"text_typography_font_weight\":\"600\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"_background_color\":\"#4C5BEE\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"btn_border_type\":\"solid\"},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"3999bdf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"background_hover_color\":\"#4C5BEE\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"39f7bb66\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Premium\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Premium\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Unlimited Calls\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Free Hosting\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"500 MB of Storage Space\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#BCBCBC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough\":\"yes\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"99\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3343EC\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#3343EC\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#959595\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"none\",\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#4C5BEE\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#3444E6\",\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_weight\":\"600\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2428,2337,'_elementor_page_assets','a:0:{}'),(2430,2338,'_wp_page_template','default'),(2431,2338,'_elementor_edit_mode','builder'),(2432,2338,'_elementor_template_type','wp-page'),(2433,2338,'_elementor_version','3.9.0'),(2434,2338,'_elementor_data','[{\"id\":\"1ac3a9fa1\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#F6F6F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"bg_image\":{\"id\":2329,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-21.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"78bd98d\",\"repeater_bg_image\":{\"id\":2330,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-22.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"64d2711\",\"repeater_bg_image\":{\"id\":2331,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-23.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b023980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34392f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Membership for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b59516d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ae5d61d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"bg_image\":{\"id\":2326,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-18.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"8623327\",\"repeater_bg_image\":{\"id\":2327,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-19.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9508d57\",\"repeater_bg_image\":{\"id\":2328,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-20.png\"}}]},\"elements\":[{\"id\":\"396d96cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d8068d5\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Basic\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Basic\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Unlimited Calls\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Free Hosting\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Random Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"500 MB of Storage Space\",\"feature_icon_color\":\"#BCBCBC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough\":\"yes\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#BCBCBC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough\":\"yes\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"67.99\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3343EC\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#3343EC\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#959595\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"cyrcle\",\"badge_hr_position\":\"left\",\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#4C5BEE\",\"btn_hover_bg_color_color\":\"#3444E6\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"},\"badge_cyrcle_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"period_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"heading_title_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"4e132327\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36b0bfe2\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Standard\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Standard\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Unlimited Calls\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Free Hosting\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"500 MB of Storage Space\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"249\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_style\":\"none\",\"badge_title\":\"Save \\u20ac 50\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#4C5BEE\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#4C5BEE\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FFFFFF\",\"feature_bg_color\":\"#4C5BEE\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#4C5BEE\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#FFFFFF\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#FFFFFF\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"#FFFFFF\",\"btn_hover_color\":\"#4C5BEE\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#FFFFFF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"period_hr_position\":\"beside\",\"feature_align\":\"left\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FFFFFF00\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"btn_typography_font_weight\":\"600\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"heading_icon_color\":\"\",\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_color\":\"#E7E7E7\",\"period_color\":\"#4C5BEE\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#FFFFFF\",\"text_typography_font_weight\":\"600\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"_background_color\":\"#4C5BEE\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"btn_border_type\":\"solid\"},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"3999bdf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"background_hover_color\":\"#4C5BEE\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"39f7bb66\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Premium\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Premium\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Unlimited Calls\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Free Hosting\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"500 MB of Storage Space\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#BCBCBC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough\":\"yes\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"99\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3343EC\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#3343EC\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#959595\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"none\",\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#4C5BEE\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#3444E6\",\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_weight\":\"600\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2435,2338,'_elementor_page_assets','a:0:{}'),(2436,2339,'_wp_page_template','default'),(2437,2339,'_elementor_edit_mode','builder'),(2438,2339,'_elementor_template_type','wp-page'),(2439,2339,'_elementor_version','3.9.0'),(2440,2339,'_elementor_data','[{\"id\":\"1ac3a9fa1\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#F6F6F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"bg_image\":{\"id\":2329,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-21.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"78bd98d\",\"repeater_bg_image\":{\"id\":2330,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-22.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"64d2711\",\"repeater_bg_image\":{\"id\":2331,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-23.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b023980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34392f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Membership for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b59516d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ae5d61d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"bg_image\":{\"id\":2326,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-18.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"8623327\",\"repeater_bg_image\":{\"id\":2327,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-19.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9508d57\",\"repeater_bg_image\":{\"id\":2328,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-20.png\"}}]},\"elements\":[{\"id\":\"396d96cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d8068d5\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Basic\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Basic\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Unlimited Calls\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Free Hosting\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Random Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"500 MB of Storage Space\",\"feature_icon_color\":\"#BCBCBC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough\":\"yes\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#BCBCBC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough\":\"yes\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"67.99\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3343EC\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#3343EC\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#959595\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"cyrcle\",\"badge_hr_position\":\"left\",\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#4C5BEE\",\"btn_hover_bg_color_color\":\"#3444E6\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"},\"badge_cyrcle_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"period_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"heading_title_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"4e132327\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36b0bfe2\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Standard\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Standard\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Unlimited Calls\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Free Hosting\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"500 MB of Storage Space\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"249\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_style\":\"none\",\"badge_title\":\"Save \\u20ac 50\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#4C5BEE\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#4C5BEE\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FFFFFF\",\"feature_bg_color\":\"#4C5BEE\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#4C5BEE\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#FFFFFF\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#FFFFFF\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"#FFFFFF\",\"btn_hover_color\":\"#4C5BEE\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#FFFFFF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"period_hr_position\":\"beside\",\"feature_align\":\"left\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FFFFFF00\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"btn_typography_font_weight\":\"600\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"heading_icon_color\":\"\",\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_color\":\"#E7E7E7\",\"period_color\":\"#4C5BEE\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#FFFFFF\",\"text_typography_font_weight\":\"600\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"_background_color\":\"#4C5BEE\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"btn_border_type\":\"solid\"},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"3999bdf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"background_hover_color\":\"#4C5BEE\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"39f7bb66\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Premium\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Premium\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Unlimited Calls\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Free Hosting\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"500 MB of Storage Space\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#BCBCBC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough\":\"yes\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"99\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3343EC\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#3343EC\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#959595\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"none\",\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#4C5BEE\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#3444E6\",\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_weight\":\"600\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2441,2339,'_elementor_page_assets','a:0:{}'),(2442,2340,'_wp_page_template','default'),(2443,2340,'_elementor_edit_mode','builder'),(2444,2340,'_elementor_template_type','wp-page'),(2445,2340,'_elementor_version','3.9.0'),(2446,2340,'_elementor_data','[{\"id\":\"1ac3a9fa1\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#F6F6F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"bg_image\":{\"id\":2329,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-21.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"78bd98d\",\"repeater_bg_image\":{\"id\":2330,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-22.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"64d2711\",\"repeater_bg_image\":{\"id\":2331,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-23.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b023980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34392f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Membership for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b59516d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ae5d61d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"bg_image\":{\"id\":2326,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-18.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"8623327\",\"repeater_bg_image\":{\"id\":2327,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-19.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9508d57\",\"repeater_bg_image\":{\"id\":2328,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-20.png\"}}]},\"elements\":[{\"id\":\"396d96cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d8068d5\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Basic\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Basic\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Unlimited Calls\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Free Hosting\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Random Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"500 MB of Storage Space\",\"feature_icon_color\":\"#BCBCBC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough\":\"yes\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#BCBCBC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough\":\"yes\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"67.99\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3343EC\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#3343EC\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#959595\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"cyrcle\",\"badge_hr_position\":\"left\",\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#4C5BEE\",\"btn_hover_bg_color_color\":\"#3444E6\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"},\"badge_cyrcle_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"period_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"heading_title_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"4e132327\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36b0bfe2\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Standard\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Standard\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Unlimited Calls\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Free Hosting\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"500 MB of Storage Space\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"249\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_style\":\"none\",\"badge_title\":\"Save \\u20ac 50\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#4C5BEE\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#4C5BEE\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FFFFFF\",\"feature_bg_color\":\"#4C5BEE\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#4C5BEE\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#FFFFFF\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#FFFFFF\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"#FFFFFF\",\"btn_hover_color\":\"#4C5BEE\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#FFFFFF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"period_hr_position\":\"beside\",\"feature_align\":\"left\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FFFFFF00\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"btn_typography_font_weight\":\"600\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"heading_icon_color\":\"\",\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_color\":\"#E7E7E7\",\"period_color\":\"#4C5BEE\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#FFFFFF\",\"text_typography_font_weight\":\"600\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"_background_color\":\"#4C5BEE\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"btn_border_type\":\"solid\"},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"3999bdf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"background_hover_color\":\"#4C5BEE\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"39f7bb66\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Premium\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Premium\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Unlimited Calls\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Free Hosting\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"500 MB of Storage Space\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#BCBCBC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough\":\"yes\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"99\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3343EC\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#3343EC\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#959595\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"none\",\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#4C5BEE\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#3444E6\",\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_weight\":\"600\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2447,2340,'_elementor_page_assets','a:0:{}'),(2457,2342,'_elementor_edit_mode','builder'),(2458,2342,'_elementor_template_type','wp-page'),(2459,2342,'_elementor_version','3.9.0'),(2460,2342,'_wp_page_template','default'),(2461,2342,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":774,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Price: [custom_query_paramter paramter_type=\'price\']<\\/p>\",\"text_color\":\"#000000C7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2462,2342,'_elementor_page_assets','a:0:{}'),(2463,2343,'_elementor_edit_mode','builder'),(2464,2343,'_elementor_template_type','wp-page'),(2465,2343,'_elementor_version','3.9.0'),(2466,2343,'_wp_page_template','default'),(2467,2343,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"globals\\/colors?id=9a110a0\"},\"background_color\":\"#5091B9\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":774,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Price: [custom_query_paramter paramter_type=\'price\']<\\/p>\",\"text_color\":\"#000000C7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2468,2343,'_elementor_page_assets','a:0:{}'),(2469,2344,'_elementor_edit_mode','builder'),(2470,2344,'_elementor_template_type','wp-page'),(2471,2344,'_elementor_version','3.9.0'),(2472,2344,'_wp_page_template','default'),(2473,2344,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#FFFAF7\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":774,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"align\":\"center\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":10,\"color\":\"rgba(0, 0, 0, 0.12)\"}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Price: [custom_query_paramter paramter_type=\'price\']<\\/p>\",\"text_color\":\"#000000C7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2474,2344,'_elementor_page_assets','a:0:{}'),(2475,2345,'_elementor_edit_mode','builder'),(2476,2345,'_elementor_template_type','wp-page'),(2477,2345,'_elementor_version','3.9.0'),(2478,2345,'_wp_page_template','default'),(2479,2345,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#FFFAF7\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":774,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"align\":\"center\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":10,\"color\":\"rgba(0, 0, 0, 0.12)\"}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Price: [custom_query_paramter paramter_type=\'price\']<\\/p>\",\"text_color\":\"#000000C7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2480,2345,'_elementor_page_assets','a:0:{}'),(2481,2346,'_elementor_edit_mode','builder'),(2482,2346,'_elementor_template_type','wp-page'),(2483,2346,'_elementor_version','3.9.0'),(2484,2346,'_wp_page_template','default'),(2485,2346,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#FFFAF7\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":774,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"align\":\"center\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":10,\"color\":\"rgba(0, 0, 0, 0.12)\"}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Price: [custom_query_paramter paramter_type=\'price\']<\\/p>\",\"text_color\":\"#000000C7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2486,2346,'_elementor_page_assets','a:0:{}'),(2487,2347,'_elementor_edit_mode','builder'),(2488,2347,'_elementor_template_type','wp-page'),(2489,2347,'_elementor_version','3.9.0'),(2490,2347,'_wp_page_template','default'),(2491,2347,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#FFFAF7\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":774,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"align\":\"center\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.12)\"}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Price: [custom_query_paramter paramter_type=\'price\']<\\/p>\",\"text_color\":\"#000000C7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2492,2347,'_elementor_page_assets','a:0:{}'),(2499,2349,'_wp_page_template','default'),(2500,2349,'_elementor_edit_mode','builder'),(2501,2349,'_elementor_template_type','wp-page'),(2502,2349,'_elementor_version','3.9.0'),(2503,2349,'_elementor_data','[{\"id\":\"1ac3a9fa1\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#F6F6F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"bg_image\":{\"id\":2329,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-21.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"78bd98d\",\"repeater_bg_image\":{\"id\":2330,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-22.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"64d2711\",\"repeater_bg_image\":{\"id\":2331,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-23.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b023980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34392f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Membership for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b59516d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ae5d61d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"bg_image\":{\"id\":2326,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-18.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"8623327\",\"repeater_bg_image\":{\"id\":2327,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-19.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9508d57\",\"repeater_bg_image\":{\"id\":2328,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-20.png\"}}]},\"elements\":[{\"id\":\"396d96cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d8068d5\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Basic\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Basic\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Unlimited Calls\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Free Hosting\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Random Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"500 MB of Storage Space\",\"feature_icon_color\":\"#BCBCBC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough\":\"yes\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#BCBCBC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough\":\"yes\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"67.99\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3343EC\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#3343EC\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#959595\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"cyrcle\",\"badge_hr_position\":\"left\",\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#4C5BEE\",\"btn_hover_bg_color_color\":\"#3444E6\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"},\"badge_cyrcle_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"period_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"heading_title_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"4e132327\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36b0bfe2\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Standard\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Standard\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Unlimited Calls\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Free Hosting\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"500 MB of Storage Space\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"249\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_style\":\"none\",\"badge_title\":\"Save \\u20ac 50\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#4C5BEE\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#4C5BEE\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FFFFFF\",\"feature_bg_color\":\"#4C5BEE\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#4C5BEE\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#FFFFFF\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#FFFFFF\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"#FFFFFF\",\"btn_hover_color\":\"#4C5BEE\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#FFFFFF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"period_hr_position\":\"beside\",\"feature_align\":\"left\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FFFFFF00\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"btn_typography_font_weight\":\"600\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"heading_icon_color\":\"\",\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_color\":\"#E7E7E7\",\"period_color\":\"#4C5BEE\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#FFFFFF\",\"text_typography_font_weight\":\"600\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"_background_color\":\"#4C5BEE\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"btn_border_type\":\"solid\"},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"3999bdf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"background_hover_color\":\"#4C5BEE\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"39f7bb66\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Premium\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Premium\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Unlimited Calls\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Free Hosting\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"500 MB of Storage Space\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#BCBCBC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough\":\"yes\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"99\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3343EC\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#3343EC\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#959595\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"none\",\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#4C5BEE\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#3444E6\",\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_weight\":\"600\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2504,2349,'_elementor_page_assets','a:0:{}'),(2506,2350,'_wp_page_template','default'),(2507,2350,'_elementor_edit_mode','builder'),(2508,2350,'_elementor_template_type','wp-page'),(2509,2350,'_elementor_version','3.9.0'),(2510,2350,'_elementor_data','[{\"id\":\"1ac3a9fa1\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#F6F6F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"bg_image\":{\"id\":2329,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-21.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"78bd98d\",\"repeater_bg_image\":{\"id\":2330,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-22.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"64d2711\",\"repeater_bg_image\":{\"id\":2331,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-23.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b023980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34392f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Membership for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b59516d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ae5d61d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"bg_image\":{\"id\":2326,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-18.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"8623327\",\"repeater_bg_image\":{\"id\":2327,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-19.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9508d57\",\"repeater_bg_image\":{\"id\":2328,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-20.png\"}}]},\"elements\":[{\"id\":\"396d96cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d8068d5\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Basic\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Basic\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Unlimited Calls\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Free Hosting\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Random Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"500 MB of Storage Space\",\"feature_icon_color\":\"#BCBCBC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough\":\"yes\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#BCBCBC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough\":\"yes\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"67.99\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3343EC\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#3343EC\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#959595\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"cyrcle\",\"badge_hr_position\":\"left\",\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#4C5BEE\",\"btn_hover_bg_color_color\":\"#3444E6\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"},\"badge_cyrcle_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"period_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"heading_title_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"4e132327\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36b0bfe2\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Standard\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Standard\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Unlimited Calls\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Free Hosting\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"500 MB of Storage Space\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"249\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_style\":\"none\",\"badge_title\":\"Save \\u20ac 50\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#4C5BEE\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#4C5BEE\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FFFFFF\",\"feature_bg_color\":\"#4C5BEE\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#4C5BEE\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#FFFFFF\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#FFFFFF\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"#FFFFFF\",\"btn_hover_color\":\"#4C5BEE\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#FFFFFF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"period_hr_position\":\"beside\",\"feature_align\":\"left\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FFFFFF00\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"btn_typography_font_weight\":\"600\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"heading_icon_color\":\"\",\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_color\":\"#E7E7E7\",\"period_color\":\"#4C5BEE\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#FFFFFF\",\"text_typography_font_weight\":\"600\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"_background_color\":\"#4C5BEE\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"btn_border_type\":\"solid\"},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"3999bdf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"background_hover_color\":\"#4C5BEE\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"39f7bb66\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Premium\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Premium\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Unlimited Calls\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Free Hosting\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"500 MB of Storage Space\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#BCBCBC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough\":\"yes\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"99\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3343EC\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#3343EC\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#959595\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"none\",\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#4C5BEE\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#3444E6\",\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_weight\":\"600\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2511,2350,'_elementor_page_assets','a:0:{}'),(2513,2351,'_wp_page_template','default'),(2514,2351,'_elementor_edit_mode','builder'),(2515,2351,'_elementor_template_type','wp-page'),(2516,2351,'_elementor_version','3.9.0'),(2517,2351,'_elementor_data','[{\"id\":\"1ac3a9fa1\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#F6F6F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"bg_image\":{\"id\":2329,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-21.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"78bd98d\",\"repeater_bg_image\":{\"id\":2330,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-22.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"64d2711\",\"repeater_bg_image\":{\"id\":2331,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-23.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b023980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34392f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Membership for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b59516d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ae5d61d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"bg_image\":{\"id\":2326,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-18.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"8623327\",\"repeater_bg_image\":{\"id\":2327,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-19.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9508d57\",\"repeater_bg_image\":{\"id\":2328,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-20.png\"}}]},\"elements\":[{\"id\":\"396d96cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d8068d5\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Basic\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Basic\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Random Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Calendar Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Usage-based (Metered) Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\",\"_id\":\"0c61060\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"67.99\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3343EC\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#3343EC\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#959595\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"cyrcle\",\"badge_hr_position\":\"left\",\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#4C5BEE\",\"btn_hover_bg_color_color\":\"#3444E6\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"},\"badge_cyrcle_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"period_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"heading_title_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"4e132327\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36b0bfe2\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Standard\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Standard\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Unlimited Calls\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Free Hosting\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"500 MB of Storage Space\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"249\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_style\":\"none\",\"badge_title\":\"Save \\u20ac 50\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#4C5BEE\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#4C5BEE\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FFFFFF\",\"feature_bg_color\":\"#4C5BEE\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#4C5BEE\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#FFFFFF\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#FFFFFF\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"#FFFFFF\",\"btn_hover_color\":\"#4C5BEE\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#FFFFFF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"period_hr_position\":\"beside\",\"feature_align\":\"left\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FFFFFF00\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"btn_typography_font_weight\":\"600\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"heading_icon_color\":\"\",\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_color\":\"#E7E7E7\",\"period_color\":\"#4C5BEE\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#FFFFFF\",\"text_typography_font_weight\":\"600\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"_background_color\":\"#4C5BEE\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"btn_border_type\":\"solid\"},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"3999bdf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"background_hover_color\":\"#4C5BEE\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"39f7bb66\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Premium\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Premium\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Unlimited Calls\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Free Hosting\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"500 MB of Storage Space\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#BCBCBC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough\":\"yes\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"99\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3343EC\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#3343EC\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#959595\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"none\",\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#4C5BEE\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#3444E6\",\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_weight\":\"600\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2518,2351,'_elementor_page_assets','a:0:{}'),(2520,2352,'_elementor_edit_mode','builder'),(2521,2352,'_elementor_template_type','wp-page'),(2522,2352,'_elementor_version','3.9.0'),(2523,2352,'_wp_page_template','default'),(2524,2352,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#FFFAF7\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":774,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"align\":\"center\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.12)\"}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Price: [custom_query_paramter paramter_type=\'price\']<\\/p>\",\"text_color\":\"#000000C7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2525,2352,'_elementor_page_assets','a:0:{}'),(2526,2353,'_elementor_edit_mode','builder'),(2527,2353,'_elementor_template_type','wp-page'),(2528,2353,'_elementor_version','3.9.0'),(2529,2353,'_wp_page_template','default'),(2530,2353,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#FFFAF7\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":774,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}]},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"align\":\"center\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.12)\"}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Price: [custom_query_paramter paramter_type=\'price\']<\\/p>\",\"text_color\":\"#000000C7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2531,2353,'_elementor_page_assets','a:0:{}'),(2532,2354,'_elementor_edit_mode','builder'),(2533,2354,'_elementor_template_type','wp-page'),(2534,2354,'_elementor_version','3.9.0'),(2535,2354,'_wp_page_template','default'),(2536,2354,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#FFFAF7\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":774,\"sizes\":[]},\"background_background\":\"classic\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}],\"z_index\":1},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"align\":\"center\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.12)\"}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Price: [custom_query_paramter paramter_type=\'price\']<\\/p>\",\"text_color\":\"#000000C7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"47e7cf3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"35c59a1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"fbc4451\"}],\"shape_divider_top\":\"triangle\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":145,\"sizes\":[]},\"shape_divider_top_negative\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":0,\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"00eb539\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f8703a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2537,2354,'_elementor_page_assets','a:0:{}'),(2538,2355,'_elementor_edit_mode','builder'),(2539,2355,'_elementor_template_type','wp-page'),(2540,2355,'_elementor_version','3.9.0'),(2541,2355,'_wp_page_template','default'),(2542,2355,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#FFFAF7\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":774,\"sizes\":[]},\"background_background\":\"classic\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}],\"z_index\":1},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"align\":\"center\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.12)\"}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Price: [custom_query_paramter paramter_type=\'price\']<\\/p>\",\"text_color\":\"#000000C7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"47e7cf3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"35c59a1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"fbc4451\"}],\"shape_divider_top\":\"triangle\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":145,\"sizes\":[]},\"shape_divider_top_negative\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":0,\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"00eb539\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f8703a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2543,2355,'_elementor_page_assets','a:0:{}'),(2544,2356,'_elementor_edit_mode','builder'),(2545,2356,'_elementor_template_type','wp-page'),(2546,2356,'_elementor_version','3.9.0'),(2547,2356,'_wp_page_template','default'),(2548,2356,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#FFFAF7\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":774,\"sizes\":[]},\"background_background\":\"classic\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}],\"z_index\":1},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"align\":\"center\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.12)\"}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Price: [custom_query_paramter paramter_type=\'price\']<\\/p>\",\"text_color\":\"#000000C7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"47e7cf3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"35c59a1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"fbc4451\"}],\"shape_divider_top\":\"triangle\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":145,\"sizes\":[]},\"shape_divider_top_negative\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":0,\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"00eb539\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f8703a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2549,2356,'_elementor_page_assets','a:0:{}'),(2550,2357,'_elementor_edit_mode','builder'),(2551,2357,'_elementor_template_type','wp-page'),(2552,2357,'_elementor_version','3.9.0'),(2553,2357,'_wp_page_template','default'),(2554,2357,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#FFFAF7\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":774,\"sizes\":[]},\"background_background\":\"classic\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}],\"z_index\":1},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"align\":\"center\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.12)\"}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Price: [custom_query_paramter paramter_type=\'price\']<\\/p>\",\"text_color\":\"#000000C7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"47e7cf3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"35c59a1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"fbc4451\"}],\"shape_divider_top\":\"triangle\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":145,\"sizes\":[]},\"shape_divider_top_negative\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":0,\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"00eb539\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f8703a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2555,2357,'_elementor_page_assets','a:0:{}'),(2556,2358,'_wp_page_template','default'),(2557,2358,'_elementor_edit_mode','builder'),(2558,2358,'_elementor_template_type','wp-page'),(2559,2358,'_elementor_version','3.9.0'); INSERT INTO `wp_postmeta` VALUES (2560,2358,'_elementor_data','[{\"id\":\"1ac3a9fa1\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#F6F6F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"bg_image\":{\"id\":2329,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-21.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"78bd98d\",\"repeater_bg_image\":{\"id\":2330,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-22.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"64d2711\",\"repeater_bg_image\":{\"id\":2331,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-23.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b023980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34392f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Membership for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b59516d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ae5d61d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"bg_image\":{\"id\":2326,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-18.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"8623327\",\"repeater_bg_image\":{\"id\":2327,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-19.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9508d57\",\"repeater_bg_image\":{\"id\":2328,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-20.png\"}}]},\"elements\":[{\"id\":\"396d96cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d8068d5\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Basic\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Basic\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Random Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Calendar Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Usage-based (Metered) Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\",\"_id\":\"0c61060\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"67.99\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3343EC\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#3343EC\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#959595\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"cyrcle\",\"badge_hr_position\":\"left\",\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#4C5BEE\",\"btn_hover_bg_color_color\":\"#3444E6\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"},\"badge_cyrcle_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"period_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"heading_title_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"4e132327\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36b0bfe2\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Standard\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Standard\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Unlimited Calls\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Free Hosting\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"500 MB of Storage Space\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"249\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_style\":\"none\",\"badge_title\":\"Save \\u20ac 50\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#4C5BEE\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#4C5BEE\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FFFFFF\",\"feature_bg_color\":\"#4C5BEE\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#4C5BEE\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#FFFFFF\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#FFFFFF\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"#FFFFFF\",\"btn_hover_color\":\"#4C5BEE\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#FFFFFF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"period_hr_position\":\"beside\",\"feature_align\":\"left\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FFFFFF00\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"btn_typography_font_weight\":\"600\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"heading_icon_color\":\"\",\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_color\":\"#E7E7E7\",\"period_color\":\"#4C5BEE\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#FFFFFF\",\"text_typography_font_weight\":\"600\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"_background_color\":\"#4C5BEE\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"btn_border_type\":\"solid\"},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"3999bdf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"background_hover_color\":\"#4C5BEE\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"39f7bb66\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Premium\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Premium\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Unlimited Calls\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Free Hosting\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"500 MB of Storage Space\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#BCBCBC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough\":\"yes\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"99\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3343EC\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#3343EC\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#959595\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"none\",\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#4C5BEE\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#3444E6\",\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_weight\":\"600\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2561,2358,'_elementor_page_assets','a:0:{}'),(2562,2359,'_wp_page_template','default'),(2563,2359,'_elementor_edit_mode','builder'),(2564,2359,'_elementor_template_type','wp-page'),(2565,2359,'_elementor_version','3.9.0'),(2566,2359,'_elementor_data','[{\"id\":\"1ac3a9fa1\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#F6F6F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"bg_image\":{\"id\":2329,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-21.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"78bd98d\",\"repeater_bg_image\":{\"id\":2330,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-22.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"64d2711\",\"repeater_bg_image\":{\"id\":2331,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-23.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b023980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34392f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Membership for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b59516d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ae5d61d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"bg_image\":{\"id\":2326,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-18.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"8623327\",\"repeater_bg_image\":{\"id\":2327,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-19.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9508d57\",\"repeater_bg_image\":{\"id\":2328,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-20.png\"}}]},\"elements\":[{\"id\":\"396d96cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d8068d5\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Basic\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Basic\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Random Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Calendar Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Usage-based (Metered) Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\",\"_id\":\"0c61060\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"67.99\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3343EC\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#3343EC\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#959595\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"cyrcle\",\"badge_hr_position\":\"left\",\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#4C5BEE\",\"btn_hover_bg_color_color\":\"#3444E6\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"},\"badge_cyrcle_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"period_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"heading_title_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"4e132327\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36b0bfe2\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Standard\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Standard\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Unlimited Calls\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Free Hosting\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"500 MB of Storage Space\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"249\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_style\":\"none\",\"badge_title\":\"Save \\u20ac 50\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#4C5BEE\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#4C5BEE\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FFFFFF\",\"feature_bg_color\":\"#4C5BEE\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#4C5BEE\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#FFFFFF\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#FFFFFF\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"#FFFFFF\",\"btn_hover_color\":\"#4C5BEE\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#FFFFFF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"period_hr_position\":\"beside\",\"feature_align\":\"left\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FFFFFF00\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"btn_typography_font_weight\":\"600\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"heading_icon_color\":\"\",\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_color\":\"#E7E7E7\",\"period_color\":\"#4C5BEE\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#FFFFFF\",\"text_typography_font_weight\":\"600\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"_background_color\":\"#4C5BEE\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"btn_border_type\":\"solid\"},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"3999bdf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"background_hover_color\":\"#4C5BEE\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"39f7bb66\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Premium\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Premium\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Unlimited Calls\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Free Hosting\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"500 MB of Storage Space\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#BCBCBC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough\":\"yes\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"99\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3343EC\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#3343EC\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#959595\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"none\",\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#4C5BEE\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#3444E6\",\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_weight\":\"600\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2567,2359,'_elementor_page_assets','a:0:{}'),(2568,2360,'_wp_page_template','default'),(2569,2360,'_elementor_edit_mode','builder'),(2570,2360,'_elementor_template_type','wp-page'),(2571,2360,'_elementor_version','3.9.0'),(2572,2360,'_elementor_data','[{\"id\":\"1ac3a9fa1\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#F6F6F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"bg_image\":{\"id\":2329,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-21.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"78bd98d\",\"repeater_bg_image\":{\"id\":2330,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-22.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"64d2711\",\"repeater_bg_image\":{\"id\":2331,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-23.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b023980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34392f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Membership for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b59516d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ae5d61d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"bg_image\":{\"id\":2326,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-18.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"8623327\",\"repeater_bg_image\":{\"id\":2327,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-19.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9508d57\",\"repeater_bg_image\":{\"id\":2328,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-20.png\"}}]},\"elements\":[{\"id\":\"396d96cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d8068d5\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Basic\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Basic\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Random Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Calendar Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Usage-based (Metered) Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\",\"_id\":\"0c61060\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"67.99\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3343EC\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#3343EC\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#959595\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"cyrcle\",\"badge_hr_position\":\"left\",\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#4C5BEE\",\"btn_hover_bg_color_color\":\"#3444E6\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"},\"badge_cyrcle_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"period_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"heading_title_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"4e132327\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36b0bfe2\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Standard\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Standard\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"249\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_style\":\"none\",\"badge_title\":\"Save \\u20ac 50\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#4C5BEE\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#4C5BEE\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FFFFFF\",\"feature_bg_color\":\"#4C5BEE\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#4C5BEE\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#FFFFFF\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#FFFFFF\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"#FFFFFF\",\"btn_hover_color\":\"#4C5BEE\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#FFFFFF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"period_hr_position\":\"beside\",\"feature_align\":\"left\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FFFFFF00\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"btn_typography_font_weight\":\"600\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"heading_icon_color\":\"\",\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_color\":\"#E7E7E7\",\"period_color\":\"#4C5BEE\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#FFFFFF\",\"text_typography_font_weight\":\"600\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"_background_color\":\"#4C5BEE\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"btn_border_type\":\"solid\"},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"3999bdf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"background_hover_color\":\"#4C5BEE\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"39f7bb66\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Premium\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Premium\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Unlimited Calls\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Free Hosting\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"500 MB of Storage Space\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#BCBCBC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough\":\"yes\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"99\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3343EC\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#3343EC\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#959595\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"none\",\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#4C5BEE\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#3444E6\",\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_weight\":\"600\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2573,2360,'_elementor_page_assets','a:0:{}'),(2575,2361,'_wp_page_template','default'),(2576,2361,'_elementor_edit_mode','builder'),(2577,2361,'_elementor_template_type','wp-page'),(2578,2361,'_elementor_version','3.9.0'),(2579,2361,'_elementor_data','[{\"id\":\"1ac3a9fa1\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#F6F6F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"bg_image\":{\"id\":2329,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-21.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"78bd98d\",\"repeater_bg_image\":{\"id\":2330,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-22.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"64d2711\",\"repeater_bg_image\":{\"id\":2331,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-23.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b023980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34392f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Membership for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b59516d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ae5d61d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"bg_image\":{\"id\":2326,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-18.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"8623327\",\"repeater_bg_image\":{\"id\":2327,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-19.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9508d57\",\"repeater_bg_image\":{\"id\":2328,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-20.png\"}}]},\"elements\":[{\"id\":\"396d96cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d8068d5\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Basic\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Basic\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Random Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Calendar Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Usage-based (Metered) Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\",\"_id\":\"0c61060\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"67.99\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3343EC\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#3343EC\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#959595\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"cyrcle\",\"badge_hr_position\":\"left\",\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#4C5BEE\",\"btn_hover_bg_color_color\":\"#3444E6\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"},\"badge_cyrcle_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"period_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"heading_title_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"4e132327\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36b0bfe2\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Standard\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Standard\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"249\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_style\":\"none\",\"badge_title\":\"Save \\u20ac 50\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#4C5BEE\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#4C5BEE\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FFFFFF\",\"feature_bg_color\":\"#4C5BEE\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#4C5BEE\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#FFFFFF\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#FFFFFF\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"#FFFFFF\",\"btn_hover_color\":\"#4C5BEE\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#FFFFFF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"period_hr_position\":\"beside\",\"feature_align\":\"left\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FFFFFF00\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"btn_typography_font_weight\":\"600\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"heading_icon_color\":\"\",\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_color\":\"#E7E7E7\",\"period_color\":\"#4C5BEE\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#FFFFFF\",\"text_typography_font_weight\":\"600\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"_background_color\":\"#4C5BEE\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"btn_border_type\":\"solid\"},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"3999bdf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"background_hover_color\":\"#4C5BEE\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"39f7bb66\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Premium\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Premium\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Unlimited Calls\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Free Hosting\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"500 MB of Storage Space\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#BCBCBC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough\":\"yes\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"99\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3343EC\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#3343EC\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#959595\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"none\",\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#4C5BEE\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#3444E6\",\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_weight\":\"600\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2580,2361,'_elementor_page_assets','a:0:{}'),(2581,2362,'_wp_page_template','default'),(2582,2362,'_elementor_edit_mode','builder'),(2583,2362,'_elementor_template_type','wp-page'),(2584,2362,'_elementor_version','3.9.0'),(2585,2362,'_elementor_data','[{\"id\":\"1ac3a9fa1\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#F6F6F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"bg_image\":{\"id\":2329,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-21.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"78bd98d\",\"repeater_bg_image\":{\"id\":2330,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-22.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"64d2711\",\"repeater_bg_image\":{\"id\":2331,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-23.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b023980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34392f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Membership for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b59516d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ae5d61d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"bg_image\":{\"id\":2326,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-18.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"8623327\",\"repeater_bg_image\":{\"id\":2327,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-19.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9508d57\",\"repeater_bg_image\":{\"id\":2328,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-20.png\"}}]},\"elements\":[{\"id\":\"396d96cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d8068d5\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Basic\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Basic\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Random Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Calendar Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Usage-based (Metered) Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\",\"_id\":\"0c61060\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"67.99\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3343EC\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#3343EC\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#959595\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"cyrcle\",\"badge_hr_position\":\"left\",\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#4C5BEE\",\"btn_hover_bg_color_color\":\"#3444E6\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"},\"badge_cyrcle_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"period_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"heading_title_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"4e132327\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36b0bfe2\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Standard\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Standard\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"249\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_style\":\"none\",\"badge_title\":\"Save \\u20ac 50\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#4C5BEE\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#4C5BEE\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FFFFFF\",\"feature_bg_color\":\"#4C5BEE\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#4C5BEE\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#FFFFFF\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#FFFFFF\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"#FFFFFF\",\"btn_hover_color\":\"#4C5BEE\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#FFFFFF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"period_hr_position\":\"beside\",\"feature_align\":\"left\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FFFFFF00\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"btn_typography_font_weight\":\"600\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"heading_icon_color\":\"\",\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_color\":\"#E7E7E7\",\"period_color\":\"#4C5BEE\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#FFFFFF\",\"text_typography_font_weight\":\"600\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"_background_color\":\"#4C5BEE\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"btn_border_type\":\"solid\"},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"3999bdf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"background_hover_color\":\"#4C5BEE\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"39f7bb66\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Premium\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Premium\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Unlimited Calls\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Free Hosting\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"500 MB of Storage Space\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#BCBCBC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough\":\"yes\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"99\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3343EC\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#3343EC\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#959595\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"none\",\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#4C5BEE\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#3444E6\",\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_weight\":\"600\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2586,2362,'_elementor_page_assets','a:0:{}'),(2587,2363,'_wp_page_template','default'),(2588,2363,'_elementor_edit_mode','builder'),(2589,2363,'_elementor_template_type','wp-page'),(2590,2363,'_elementor_version','3.9.0'),(2591,2363,'_elementor_data','[{\"id\":\"1ac3a9fa1\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#F6F6F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"bg_image\":{\"id\":2329,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-21.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"78bd98d\",\"repeater_bg_image\":{\"id\":2330,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-22.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"64d2711\",\"repeater_bg_image\":{\"id\":2331,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-23.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b023980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34392f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Membership for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b59516d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ae5d61d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"bg_image\":{\"id\":2326,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-18.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"8623327\",\"repeater_bg_image\":{\"id\":2327,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-19.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9508d57\",\"repeater_bg_image\":{\"id\":2328,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-20.png\"}}]},\"elements\":[{\"id\":\"396d96cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d8068d5\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Basic\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Basic\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Random Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Calendar Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Usage-based (Metered) Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\",\"_id\":\"0c61060\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"67.99\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3343EC\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#3343EC\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#959595\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"cyrcle\",\"badge_hr_position\":\"left\",\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#4C5BEE\",\"btn_hover_bg_color_color\":\"#3444E6\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"},\"badge_cyrcle_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"period_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"heading_title_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"4e132327\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36b0bfe2\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Standard\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Standard\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"249\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_style\":\"none\",\"badge_title\":\"Save \\u20ac 50\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#4C5BEE\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#4C5BEE\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FFFFFF\",\"feature_bg_color\":\"#4C5BEE\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#4C5BEE\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#FFFFFF\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#FFFFFF\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"#FFFFFF\",\"btn_hover_color\":\"#4C5BEE\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#FFFFFF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"period_hr_position\":\"beside\",\"feature_align\":\"left\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FFFFFF00\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"btn_typography_font_weight\":\"600\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"heading_icon_color\":\"\",\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_color\":\"#E7E7E7\",\"period_color\":\"#4C5BEE\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#FFFFFF\",\"text_typography_font_weight\":\"600\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"_background_color\":\"#4C5BEE\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"btn_border_type\":\"solid\"},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"3999bdf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"background_hover_color\":\"#4C5BEE\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"39f7bb66\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Premium\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Premium\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Calendar Billing\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Usage-based (Metered) Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"99\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3343EC\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#3343EC\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#959595\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"none\",\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#4C5BEE\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#3444E6\",\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_weight\":\"600\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2592,2363,'_elementor_page_assets','a:0:{}'),(2594,2364,'_elementor_edit_mode','builder'),(2595,2364,'_elementor_template_type','wp-page'),(2596,2364,'_elementor_version','3.9.0'),(2597,2364,'_wp_page_template','elementor_canvas'),(2598,2364,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"abc3894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscription Management Software\",\"align\":\"center\",\"title_color\":\"#000000B5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72cd62d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/plans\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Magazine\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"eCommerce\",\"content_title_tag\":\"h2\",\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/shop\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Membership\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2599,2364,'_elementor_page_assets','a:0:{}'),(2601,2365,'_elementor_edit_mode','builder'),(2602,2365,'_elementor_template_type','wp-page'),(2603,2365,'_elementor_version','3.9.0'),(2604,2365,'_wp_page_template','elementor_canvas'),(2605,2365,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"abc3894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscription Management Software\",\"align\":\"center\",\"title_color\":\"#000000B5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72cd62d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/plans\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Magazine\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"eCommerce\",\"content_title_tag\":\"h2\",\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/shop\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Membership\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2606,2365,'_elementor_page_assets','a:0:{}'),(2608,2366,'_elementor_edit_mode','builder'),(2609,2366,'_elementor_template_type','wp-page'),(2610,2366,'_elementor_version','3.9.0'),(2611,2366,'_wp_page_template','elementor_canvas'),(2612,2366,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"abc3894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscription Management Software\",\"align\":\"center\",\"title_color\":\"#000000B5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72cd62d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/plans\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Magazine\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"eCommerce\",\"content_title_tag\":\"h2\",\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/shop\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Membership\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]},\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/membership\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2613,2366,'_elementor_page_assets','a:0:{}'),(2615,2367,'_elementor_edit_mode','builder'),(2616,2367,'_elementor_template_type','wp-page'),(2617,2367,'_elementor_version','3.9.0'),(2618,2367,'_wp_page_template','elementor_canvas'),(2619,2367,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"abc3894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscription Management Software\",\"align\":\"center\",\"title_color\":\"#000000B5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72cd62d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/plans\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Magazine\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"eCommerce\",\"content_title_tag\":\"h2\",\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/shop\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Membership\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]},\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/membership\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2620,2367,'_elementor_page_assets','a:0:{}'),(2621,2368,'_elementor_edit_mode','builder'),(2622,2368,'_elementor_template_type','wp-page'),(2623,2368,'_elementor_version','3.9.0'),(2624,2368,'_wp_page_template','elementor_canvas'),(2625,2368,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"abc3894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscription Management Software\",\"align\":\"center\",\"title_color\":\"#000000B5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72cd62d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/plans\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Magazine\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"eCommerce\",\"content_title_tag\":\"h2\",\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/shop\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Membership\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]},\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/membership\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2626,2368,'_elementor_page_assets','a:0:{}'),(2627,2369,'_elementor_edit_mode','builder'),(2628,2369,'_elementor_template_type','wp-page'),(2629,2369,'_elementor_version','3.9.0'),(2630,2369,'_wp_page_template','elementor_canvas'),(2631,2369,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"abc3894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscription Management Software\",\"align\":\"center\",\"title_color\":\"#000000B5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72cd62d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/plans\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Magazine\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"eCommerce\",\"content_title_tag\":\"h2\",\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/shop\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Membership\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]},\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/membership\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2632,2369,'_elementor_page_assets','a:0:{}'),(2635,2370,'_menu_item_type','post_type'),(2636,2370,'_menu_item_menu_item_parent','0'),(2637,2370,'_menu_item_object_id','18'),(2638,2370,'_menu_item_object','page'),(2639,2370,'_menu_item_target',''),(2640,2370,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2641,2370,'_menu_item_xfn',''),(2642,2370,'_menu_item_url',''),(2651,2372,'_elementor_template_type','wp-post'),(2652,2372,'_wp_page_template','elementor_canvas'),(2653,2372,'_elementor_edit_mode','builder'),(2654,2372,'_elementor_version','3.8.1'),(2655,2372,'_elementor_data','[{\"id\":\"99f5450\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b450fcf\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"d47cc9b\"}],\"z_index\":3,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2371ecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_mobile\":35,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"4cb5bfe\",\"elType\":\"widget\",\"settings\":{\"title_type\":\"none\",\"custom_title\":\"My Custom Logo\",\"custom_description\":\"Tagline\",\"width\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"border_border\":\"\",\"image\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2022\\/06\\/SF-logo.png\",\"id\":2095,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"retina_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"wpr-logo\"}],\"isInner\":false},{\"id\":\"7b88682\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_mobile\":65,\"_inline_size_tablet\":80,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53eac1f\",\"elType\":\"widget\",\"settings\":{\"menu_select\":\"main-menu\",\"menu_align_tablet\":\"center\",\"toggle_btn_txt_1\":\"Menu\",\"toggle_btn_txt_2\":\"Close\",\"toggle_btn_align_mobile\":\"right\",\"menu_item_color\":\"#272727\",\"menu_items_typography_typography\":\"custom\",\"menu_items_typography_font_family\":\"Poppins\",\"menu_items_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_items_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_items_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"menu_items_typography_font_weight\":\"400\",\"menu_item_color_hover\":\"#FF4F40\",\"pointer_color_hover\":\"#FF4F40\",\"menu_items_sub_icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"pointer_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_items_padding_bg_hr\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_items_padding_vr\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"menu_items_border_color\":\"#222222\",\"sub_menu_color\":\"#323232\",\"sub_menu_color_bg_hover\":\"#FF4F40\",\"sub_menu_typography_typography\":\"custom\",\"sub_menu_typography_font_family\":\"Poppins\",\"sub_menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"sub_menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"sub_menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"sub_menu_typography_font_weight\":\"400\",\"sub_menu_padding_vr\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_menu_divider\":\"\",\"sub_menu_border_border\":\"\",\"sub_menu_box_shadow_box_shadow_type\":\"yes\",\"sub_menu_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(164.99999999999997, 164.99999999999997, 164.99999999999997, 0.22)\"},\"toggle_btn_color_hover\":\"#FF4F40\",\"toggle_btn_lines_height\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"toggle_btn_line_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"toggle_btn_width\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"mobile_menu_bg_color_focus\":\"#FF4F40\",\"mobile_menu_divider_color\":\"#F3F3F3\",\"mobile_menu_offset\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"toggle_btn_align_tablet\":\"right\",\"menu_items_sub_offset\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"sub_mega_menu_border_border\":\"\",\"mobile_menu_padding_hr\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"mobile_menu_padding_vr\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mobile_menu_sub_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"mobile_menu_sub_padding_hr\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"mobile_menu_sub_padding_vr\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"sub_mega_menu_box_shadow_box_shadow_type\":\"yes\",\"sub_mega_menu_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"mobile_menu_offset_laptop\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"mobile_menu_offset_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-mega-menu\"}],\"isInner\":false},{\"id\":\"1291c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_mobile\":65,\"_inline_size_tablet\":80,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ae8a91\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Login\",\"button_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/login\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_hover_animation_text\":\"Go\",\"button_position\":\"right\"},\"elements\":[],\"widgetType\":\"wpr-button\"}],\"isInner\":false}],\"isInner\":false}]'),(2656,2372,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2659,2373,'_elementor_template_type','wp-post'),(2660,2373,'_wp_page_template','elementor_canvas'),(2661,2373,'_elementor_edit_mode','builder'),(2662,2373,'_elementor_version','3.9.0'),(2663,2373,'_elementor_data','[{\"id\":\"99f5450\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b450fcf\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"d47cc9b\"}],\"z_index\":3,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2371ecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"content_position\":\"center\",\"_inline_size_mobile\":35,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"4cb5bfe\",\"elType\":\"widget\",\"settings\":{\"title_type\":\"none\",\"custom_title\":\"My Custom Logo\",\"custom_description\":\"Tagline\",\"width\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"border_border\":\"\",\"image\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2022\\/06\\/SF-logo.png\",\"id\":2095,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"retina_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"wpr-logo\"}],\"isInner\":false},{\"id\":\"7b88682\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.332,\"content_position\":\"center\",\"_inline_size_mobile\":65,\"_inline_size_tablet\":80,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53eac1f\",\"elType\":\"widget\",\"settings\":{\"menu_select\":\"main-menu\",\"menu_align_tablet\":\"center\",\"toggle_btn_txt_1\":\"Menu\",\"toggle_btn_txt_2\":\"Close\",\"toggle_btn_align_mobile\":\"right\",\"menu_item_color\":\"#272727\",\"menu_items_typography_typography\":\"custom\",\"menu_items_typography_font_family\":\"Poppins\",\"menu_items_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_items_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_items_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"menu_items_typography_font_weight\":\"400\",\"menu_item_color_hover\":\"#FF4F40\",\"pointer_color_hover\":\"#FF4F40\",\"menu_items_sub_icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"pointer_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_items_padding_bg_hr\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_items_padding_vr\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"menu_items_border_color\":\"#222222\",\"sub_menu_color\":\"#323232\",\"sub_menu_color_bg_hover\":\"#FF4F40\",\"sub_menu_typography_typography\":\"custom\",\"sub_menu_typography_font_family\":\"Poppins\",\"sub_menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"sub_menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"sub_menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"sub_menu_typography_font_weight\":\"400\",\"sub_menu_padding_vr\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_menu_divider\":\"\",\"sub_menu_border_border\":\"\",\"sub_menu_box_shadow_box_shadow_type\":\"yes\",\"sub_menu_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(164.99999999999997, 164.99999999999997, 164.99999999999997, 0.22)\"},\"toggle_btn_color_hover\":\"#FF4F40\",\"toggle_btn_lines_height\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"toggle_btn_line_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"toggle_btn_width\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"mobile_menu_bg_color_focus\":\"#FF4F40\",\"mobile_menu_divider_color\":\"#F3F3F3\",\"mobile_menu_offset\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"toggle_btn_align_tablet\":\"right\",\"menu_items_sub_offset\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"sub_mega_menu_border_border\":\"\",\"mobile_menu_padding_hr\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"mobile_menu_padding_vr\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mobile_menu_sub_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"mobile_menu_sub_padding_hr\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"mobile_menu_sub_padding_vr\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"sub_mega_menu_box_shadow_box_shadow_type\":\"yes\",\"sub_mega_menu_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"mobile_menu_offset_laptop\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"mobile_menu_offset_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-mega-menu\"}],\"isInner\":false},{\"id\":\"1291c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_mobile\":65,\"_inline_size_tablet\":80,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ae8a91\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Login\",\"button_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/login\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_hover_animation_text\":\"Go\",\"button_position\":\"right\"},\"elements\":[],\"widgetType\":\"wpr-button\"}],\"isInner\":false}],\"isInner\":false}]'),(2664,2373,'_elementor_page_assets','a:0:{}'),(2666,2374,'_elementor_template_type','wp-post'),(2667,2374,'_wp_page_template','elementor_canvas'),(2668,2374,'_elementor_edit_mode','builder'),(2669,2374,'_elementor_version','3.9.0'),(2670,2374,'_elementor_data','[{\"id\":\"99f5450\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b450fcf\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"d47cc9b\"}],\"z_index\":3,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2371ecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_mobile\":35,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"4cb5bfe\",\"elType\":\"widget\",\"settings\":{\"title_type\":\"none\",\"custom_title\":\"My Custom Logo\",\"custom_description\":\"Tagline\",\"width\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"border_border\":\"\",\"image\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2022\\/06\\/SF-logo.png\",\"id\":2095,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"retina_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"wpr-logo\"}],\"isInner\":false},{\"id\":\"7b88682\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":46.332,\"content_position\":\"center\",\"_inline_size_mobile\":65,\"_inline_size_tablet\":80,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53eac1f\",\"elType\":\"widget\",\"settings\":{\"menu_select\":\"main-menu\",\"menu_align_tablet\":\"center\",\"toggle_btn_txt_1\":\"Menu\",\"toggle_btn_txt_2\":\"Close\",\"toggle_btn_align_mobile\":\"right\",\"menu_item_color\":\"#272727\",\"menu_items_typography_typography\":\"custom\",\"menu_items_typography_font_family\":\"Poppins\",\"menu_items_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_items_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_items_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"menu_items_typography_font_weight\":\"400\",\"menu_item_color_hover\":\"#FF4F40\",\"pointer_color_hover\":\"#FF4F40\",\"menu_items_sub_icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"pointer_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_items_padding_bg_hr\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_items_padding_vr\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"menu_items_border_color\":\"#222222\",\"sub_menu_color\":\"#323232\",\"sub_menu_color_bg_hover\":\"#FF4F40\",\"sub_menu_typography_typography\":\"custom\",\"sub_menu_typography_font_family\":\"Poppins\",\"sub_menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"sub_menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"sub_menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"sub_menu_typography_font_weight\":\"400\",\"sub_menu_padding_vr\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_menu_divider\":\"\",\"sub_menu_border_border\":\"\",\"sub_menu_box_shadow_box_shadow_type\":\"yes\",\"sub_menu_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(164.99999999999997, 164.99999999999997, 164.99999999999997, 0.22)\"},\"toggle_btn_color_hover\":\"#FF4F40\",\"toggle_btn_lines_height\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"toggle_btn_line_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"toggle_btn_width\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"mobile_menu_bg_color_focus\":\"#FF4F40\",\"mobile_menu_divider_color\":\"#F3F3F3\",\"mobile_menu_offset\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"toggle_btn_align_tablet\":\"right\",\"menu_items_sub_offset\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"sub_mega_menu_border_border\":\"\",\"mobile_menu_padding_hr\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"mobile_menu_padding_vr\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mobile_menu_sub_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"mobile_menu_sub_padding_hr\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"mobile_menu_sub_padding_vr\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"sub_mega_menu_box_shadow_box_shadow_type\":\"yes\",\"sub_mega_menu_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"mobile_menu_offset_laptop\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"mobile_menu_offset_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-mega-menu\"}],\"isInner\":false},{\"id\":\"1291c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_mobile\":65,\"_inline_size_tablet\":80,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ae8a91\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Login\",\"button_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/login\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_hover_animation_text\":\"Go\",\"button_position\":\"right\"},\"elements\":[],\"widgetType\":\"wpr-button\"}],\"isInner\":false}],\"isInner\":false}]'),(2671,2374,'_elementor_page_assets','a:0:{}'),(2673,2375,'_elementor_template_type','wp-post'),(2674,2375,'_wp_page_template','elementor_canvas'),(2675,2375,'_elementor_edit_mode','builder'),(2676,2375,'_elementor_version','3.9.0'),(2677,2375,'_elementor_data','[{\"id\":\"99f5450\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b450fcf\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"d47cc9b\"}],\"z_index\":3,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[{\"id\":\"2371ecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_mobile\":35,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"4cb5bfe\",\"elType\":\"widget\",\"settings\":{\"title_type\":\"none\",\"custom_title\":\"My Custom Logo\",\"custom_description\":\"Tagline\",\"width\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"border_border\":\"\",\"image\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2022\\/06\\/SF-logo.png\",\"id\":2095,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"retina_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"wpr-logo\"}],\"isInner\":false},{\"id\":\"7b88682\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":46.332,\"content_position\":\"center\",\"_inline_size_mobile\":65,\"_inline_size_tablet\":80,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53eac1f\",\"elType\":\"widget\",\"settings\":{\"menu_select\":\"main-menu\",\"menu_align_tablet\":\"center\",\"toggle_btn_txt_1\":\"Menu\",\"toggle_btn_txt_2\":\"Close\",\"toggle_btn_align_mobile\":\"right\",\"menu_item_color\":\"#272727\",\"menu_items_typography_typography\":\"custom\",\"menu_items_typography_font_family\":\"Poppins\",\"menu_items_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_items_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_items_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"menu_items_typography_font_weight\":\"400\",\"menu_item_color_hover\":\"#FF4F40\",\"pointer_color_hover\":\"#FF4F40\",\"menu_items_sub_icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"pointer_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_items_padding_bg_hr\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_items_padding_vr\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"menu_items_border_color\":\"#222222\",\"sub_menu_color\":\"#323232\",\"sub_menu_color_bg_hover\":\"#FF4F40\",\"sub_menu_typography_typography\":\"custom\",\"sub_menu_typography_font_family\":\"Poppins\",\"sub_menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"sub_menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"sub_menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"sub_menu_typography_font_weight\":\"400\",\"sub_menu_padding_vr\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_menu_divider\":\"\",\"sub_menu_border_border\":\"\",\"sub_menu_box_shadow_box_shadow_type\":\"yes\",\"sub_menu_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(164.99999999999997, 164.99999999999997, 164.99999999999997, 0.22)\"},\"toggle_btn_color_hover\":\"#FF4F40\",\"toggle_btn_lines_height\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"toggle_btn_line_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"toggle_btn_width\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"mobile_menu_bg_color_focus\":\"#FF4F40\",\"mobile_menu_divider_color\":\"#F3F3F3\",\"mobile_menu_offset\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"toggle_btn_align_tablet\":\"right\",\"menu_items_sub_offset\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"sub_mega_menu_border_border\":\"\",\"mobile_menu_padding_hr\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"mobile_menu_padding_vr\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mobile_menu_sub_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"mobile_menu_sub_padding_hr\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"mobile_menu_sub_padding_vr\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"sub_mega_menu_box_shadow_box_shadow_type\":\"yes\",\"sub_mega_menu_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"mobile_menu_offset_laptop\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"mobile_menu_offset_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-mega-menu\"}],\"isInner\":false},{\"id\":\"1291c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_mobile\":65,\"_inline_size_tablet\":80,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ae8a91\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Login\",\"button_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/login\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_hover_animation_text\":\"Go\",\"button_position\":\"right\"},\"elements\":[],\"widgetType\":\"wpr-button\"}],\"isInner\":false}],\"isInner\":false}]'),(2678,2375,'_elementor_page_assets','a:0:{}'),(2681,2376,'_elementor_template_type','wp-post'),(2682,2376,'_wp_page_template','elementor_canvas'),(2683,2376,'_elementor_edit_mode','builder'),(2684,2376,'_elementor_version','3.9.0'),(2685,2376,'_elementor_data','[{\"id\":\"99f5450\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b450fcf\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"d47cc9b\"}],\"z_index\":3,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[{\"id\":\"2371ecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_mobile\":35,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"4cb5bfe\",\"elType\":\"widget\",\"settings\":{\"title_type\":\"none\",\"custom_title\":\"My Custom Logo\",\"custom_description\":\"Tagline\",\"width\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"border_border\":\"\",\"image\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2022\\/06\\/SF-logo.png\",\"id\":2095,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"retina_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"wpr-logo\"}],\"isInner\":false},{\"id\":\"7b88682\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":46.332,\"content_position\":\"center\",\"_inline_size_mobile\":65,\"_inline_size_tablet\":80,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53eac1f\",\"elType\":\"widget\",\"settings\":{\"menu_select\":\"main-menu\",\"menu_align_tablet\":\"center\",\"toggle_btn_txt_1\":\"Menu\",\"toggle_btn_txt_2\":\"Close\",\"toggle_btn_align_mobile\":\"right\",\"menu_item_color\":\"#272727\",\"menu_items_typography_typography\":\"custom\",\"menu_items_typography_font_family\":\"Poppins\",\"menu_items_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_items_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_items_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"menu_items_typography_font_weight\":\"400\",\"menu_item_color_hover\":\"#FF4F40\",\"pointer_color_hover\":\"#FF4F40\",\"menu_items_sub_icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"pointer_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_items_padding_bg_hr\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_items_padding_vr\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"menu_items_border_color\":\"#222222\",\"sub_menu_color\":\"#323232\",\"sub_menu_color_bg_hover\":\"#FF4F40\",\"sub_menu_typography_typography\":\"custom\",\"sub_menu_typography_font_family\":\"Poppins\",\"sub_menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"sub_menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"sub_menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"sub_menu_typography_font_weight\":\"400\",\"sub_menu_padding_vr\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_menu_divider\":\"\",\"sub_menu_border_border\":\"\",\"sub_menu_box_shadow_box_shadow_type\":\"yes\",\"sub_menu_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(164.99999999999997, 164.99999999999997, 164.99999999999997, 0.22)\"},\"toggle_btn_color_hover\":\"#FF4F40\",\"toggle_btn_lines_height\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"toggle_btn_line_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"toggle_btn_width\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"mobile_menu_bg_color_focus\":\"#FF4F40\",\"mobile_menu_divider_color\":\"#F3F3F3\",\"mobile_menu_offset\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"toggle_btn_align_tablet\":\"right\",\"menu_items_sub_offset\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"sub_mega_menu_border_border\":\"\",\"mobile_menu_padding_hr\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"mobile_menu_padding_vr\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mobile_menu_sub_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"mobile_menu_sub_padding_hr\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"mobile_menu_sub_padding_vr\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"sub_mega_menu_box_shadow_box_shadow_type\":\"yes\",\"sub_mega_menu_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"mobile_menu_offset_laptop\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"mobile_menu_offset_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-mega-menu\"}],\"isInner\":false},{\"id\":\"1291c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_mobile\":65,\"_inline_size_tablet\":80,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ae8a91\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Login\",\"button_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/login\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_hover_animation_text\":\"Go\",\"button_position\":\"right\",\"button_bg_color_background\":\"classic\",\"button_bg_color_color\":\"#FD7B03\"},\"elements\":[],\"widgetType\":\"wpr-button\"}],\"isInner\":false}],\"isInner\":false}]'),(2686,2376,'_elementor_page_assets','a:0:{}'),(2688,2377,'_elementor_template_type','wp-post'),(2689,2377,'_wp_page_template','elementor_canvas'),(2690,2377,'_elementor_edit_mode','builder'),(2691,2377,'_elementor_version','3.9.0'),(2692,2377,'_elementor_data','[{\"id\":\"99f5450\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b450fcf\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"d47cc9b\"}],\"z_index\":3,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[{\"id\":\"2371ecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_mobile\":35,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"4cb5bfe\",\"elType\":\"widget\",\"settings\":{\"title_type\":\"none\",\"custom_title\":\"My Custom Logo\",\"custom_description\":\"Tagline\",\"width\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"border_border\":\"\",\"image\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2022\\/06\\/SF-logo.png\",\"id\":2095,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"retina_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"wpr-logo\"}],\"isInner\":false},{\"id\":\"7b88682\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":46.332,\"content_position\":\"center\",\"_inline_size_mobile\":65,\"_inline_size_tablet\":80,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53eac1f\",\"elType\":\"widget\",\"settings\":{\"menu_select\":\"main-menu\",\"menu_align_tablet\":\"center\",\"toggle_btn_txt_1\":\"Menu\",\"toggle_btn_txt_2\":\"Close\",\"toggle_btn_align_mobile\":\"right\",\"menu_item_color\":\"#272727\",\"menu_items_typography_typography\":\"custom\",\"menu_items_typography_font_family\":\"Poppins\",\"menu_items_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_items_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_items_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"menu_items_typography_font_weight\":\"400\",\"menu_item_color_hover\":\"#FF4F40\",\"pointer_color_hover\":\"#FF4F40\",\"menu_items_sub_icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"pointer_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_items_padding_bg_hr\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_items_padding_vr\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"menu_items_border_color\":\"#222222\",\"sub_menu_color\":\"#323232\",\"sub_menu_color_bg_hover\":\"#FF4F40\",\"sub_menu_typography_typography\":\"custom\",\"sub_menu_typography_font_family\":\"Poppins\",\"sub_menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"sub_menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"sub_menu_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"sub_menu_typography_font_weight\":\"400\",\"sub_menu_padding_vr\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_menu_divider\":\"\",\"sub_menu_border_border\":\"\",\"sub_menu_box_shadow_box_shadow_type\":\"yes\",\"sub_menu_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(164.99999999999997, 164.99999999999997, 164.99999999999997, 0.22)\"},\"toggle_btn_color_hover\":\"#FF4F40\",\"toggle_btn_lines_height\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"toggle_btn_line_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"toggle_btn_width\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"mobile_menu_bg_color_focus\":\"#FF4F40\",\"mobile_menu_divider_color\":\"#F3F3F3\",\"mobile_menu_offset\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"toggle_btn_align_tablet\":\"right\",\"menu_items_sub_offset\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"sub_mega_menu_border_border\":\"\",\"mobile_menu_padding_hr\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"mobile_menu_padding_vr\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mobile_menu_sub_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"mobile_menu_sub_padding_hr\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"mobile_menu_sub_padding_vr\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"sub_mega_menu_box_shadow_box_shadow_type\":\"yes\",\"sub_mega_menu_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"mobile_menu_offset_laptop\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"mobile_menu_offset_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-mega-menu\"}],\"isInner\":false},{\"id\":\"1291c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_mobile\":65,\"_inline_size_tablet\":80,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ae8a91\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Login\",\"button_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/login\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_hover_animation_text\":\"Go\",\"button_position\":\"right\",\"button_bg_color_background\":\"classic\",\"button_bg_color_color\":\"#FD7B03\",\"button_hover_bg_color_background\":\"classic\",\"button_hover_bg_color_color\":\"#D77822\"},\"elements\":[],\"widgetType\":\"wpr-button\"}],\"isInner\":false}],\"isInner\":false}]'),(2693,2377,'_elementor_page_assets','a:0:{}'),(2695,2378,'_elementor_template_type','wp-post'),(2696,2378,'_wp_page_template','elementor_canvas'),(2697,2378,'_elementor_edit_mode','builder'),(2698,2378,'_elementor_version','3.8.1'),(2699,2378,'_elementor_data','[{\"id\":\"c785f8b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#272727\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"59e4d8d\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"3efef5b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed0d8cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb6bdf5\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#272727\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ad27cd7\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"294f847\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"c4b827a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"383dffc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#3A3A3A\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27c299b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b1fc068\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"aab7447\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"12dde41\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"263f2d3\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Scroll To Top\",\"button_text_color\":\"#FF4F40\",\"button_bg_color\":\"#605BE500\",\"button_border_color\":\"#FF4F40\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"button_bg_color_hover\":\"#FF4F40\",\"button_border_color_hover\":\"#FF4F40\",\"hover_animation_hover_duration\":0.5,\"button_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"15\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":false},\"border_switcher\":\"yes\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wpr-back-to-top\"}],\"isInner\":false}],\"isInner\":false}]'),(2700,2378,'_elementor_page_assets','a:0:{}'),(2702,2379,'_elementor_template_type','wp-post'),(2703,2379,'_wp_page_template','elementor_canvas'),(2704,2379,'_elementor_edit_mode','builder'),(2705,2379,'_elementor_version','3.9.0'),(2706,2379,'_elementor_data','[{\"id\":\"c785f8b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#272727\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"59e4d8d\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"3efef5b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed0d8cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ef289df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>SubscriptionFlow Demo<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb6bdf5\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#272727\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ad27cd7\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"294f847\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"c4b827a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"383dffc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#3A3A3A\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27c299b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b1fc068\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"aab7447\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"12dde41\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"263f2d3\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Scroll To Top\",\"button_text_color\":\"#FF4F40\",\"button_bg_color\":\"#605BE500\",\"button_border_color\":\"#FF4F40\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"button_bg_color_hover\":\"#FF4F40\",\"button_border_color_hover\":\"#FF4F40\",\"hover_animation_hover_duration\":0.5,\"button_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"15\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":false},\"border_switcher\":\"yes\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wpr-back-to-top\"}],\"isInner\":false}],\"isInner\":false}]'),(2707,2379,'_elementor_page_assets','a:0:{}'),(2709,2380,'_wp_page_template','default'),(2710,2380,'_elementor_edit_mode','builder'),(2711,2380,'_elementor_template_type','wp-page'),(2712,2380,'_elementor_version','3.9.0'),(2713,2380,'_elementor_data','[{\"id\":\"1ac3a9fa1\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#F6F6F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"bg_image\":{\"id\":2329,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-21.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"78bd98d\",\"repeater_bg_image\":{\"id\":2330,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-22.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"64d2711\",\"repeater_bg_image\":{\"id\":2331,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-23.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b023980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34392f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Membership for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b59516d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ae5d61d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"bg_image\":{\"id\":2326,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-18.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"8623327\",\"repeater_bg_image\":{\"id\":2327,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-19.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9508d57\",\"repeater_bg_image\":{\"id\":2328,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-20.png\"}}]},\"elements\":[{\"id\":\"396d96cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d8068d5\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Basic\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Basic\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Random Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Calendar Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Usage-based (Metered) Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\",\"_id\":\"0c61060\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"67.99\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3343EC\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#3343EC\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#959595\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"cyrcle\",\"badge_hr_position\":\"left\",\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#4C5BEE\",\"btn_hover_bg_color_color\":\"#3444E6\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"},\"badge_cyrcle_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"period_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"heading_title_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"4e132327\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36b0bfe2\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Standard\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Standard\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"249\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_style\":\"none\",\"badge_title\":\"Save \\u20ac 50\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#4C5BEE\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#4C5BEE\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FFFFFF\",\"feature_bg_color\":\"#4C5BEE\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#4C5BEE\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#FFFFFF\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#FFFFFF\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"#FFFFFF\",\"btn_hover_color\":\"#4C5BEE\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#FFFFFF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"period_hr_position\":\"beside\",\"feature_align\":\"left\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FFFFFF00\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"btn_typography_font_weight\":\"600\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"heading_icon_color\":\"\",\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_color\":\"#E7E7E7\",\"period_color\":\"#4C5BEE\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#FFFFFF\",\"text_typography_font_weight\":\"600\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"_background_color\":\"#4C5BEE\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"btn_border_type\":\"solid\"},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"3999bdf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"background_hover_color\":\"#4C5BEE\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"39f7bb66\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Premium\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Premium\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Calendar Billing\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Usage-based (Metered) Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"99\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3343EC\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#3343EC\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#959595\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"none\",\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#4C5BEE\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#3444E6\",\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_weight\":\"600\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2714,2380,'_elementor_page_assets','a:0:{}'),(2716,2381,'_wp_page_template','default'),(2717,2381,'_elementor_edit_mode','builder'),(2718,2381,'_elementor_template_type','wp-page'),(2719,2381,'_elementor_version','3.9.0'),(2720,2381,'_elementor_data','[{\"id\":\"1ac3a9fa1\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#F6F6F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"bg_image\":{\"id\":2329,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-21.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"78bd98d\",\"repeater_bg_image\":{\"id\":2330,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-22.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"64d2711\",\"repeater_bg_image\":{\"id\":2331,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-23.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b023980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34392f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Membership for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b59516d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ae5d61d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"bg_image\":{\"id\":2326,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-18.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"8623327\",\"repeater_bg_image\":{\"id\":2327,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-19.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9508d57\",\"repeater_bg_image\":{\"id\":2328,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-20.png\"}}]},\"elements\":[{\"id\":\"396d96cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d8068d5\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Basic\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Basic\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Random Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Calendar Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Usage-based (Metered) Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\",\"_id\":\"0c61060\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"67.99\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3343EC\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#3343EC\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#959595\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"cyrcle\",\"badge_hr_position\":\"left\",\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#4C5BEE\",\"btn_hover_bg_color_color\":\"#3444E6\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"},\"badge_cyrcle_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"period_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"heading_title_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"4e132327\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36b0bfe2\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Standard\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Standard\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"249\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_style\":\"none\",\"badge_title\":\"Save \\u20ac 50\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#4C5BEE\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#4C5BEE\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FFFFFF\",\"feature_bg_color\":\"#4C5BEE\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#4C5BEE\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#FFFFFF\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#FFFFFF\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"#FFFFFF\",\"btn_hover_color\":\"#4C5BEE\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#FFFFFF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"period_hr_position\":\"beside\",\"feature_align\":\"left\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FFFFFF00\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"btn_typography_font_weight\":\"600\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"heading_icon_color\":\"\",\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_color\":\"#E7E7E7\",\"period_color\":\"#4C5BEE\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#FFFFFF\",\"text_typography_font_weight\":\"600\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"_background_color\":\"#4C5BEE\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"btn_border_type\":\"solid\"},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"3999bdf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"background_hover_color\":\"#4C5BEE\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"39f7bb66\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Premium\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Premium\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Calendar Billing\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Usage-based (Metered) Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"99\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3343EC\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#3343EC\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#959595\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"none\",\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#4C5BEE\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#3444E6\",\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_weight\":\"600\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2721,2381,'_elementor_page_assets','a:0:{}'),(2723,2382,'_wp_page_template','default'),(2724,2382,'_elementor_edit_mode','builder'),(2725,2382,'_elementor_template_type','wp-page'),(2726,2382,'_elementor_version','3.9.0'),(2727,2382,'_elementor_data','[{\"id\":\"1ac3a9fa1\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#F6F6F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"bg_image\":{\"id\":2329,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-21.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"78bd98d\",\"repeater_bg_image\":{\"id\":2330,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-22.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"64d2711\",\"repeater_bg_image\":{\"id\":2331,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-23.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b023980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34392f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Membership for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b59516d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ae5d61d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"bg_image\":{\"id\":2326,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-18.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"8623327\",\"repeater_bg_image\":{\"id\":2327,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-19.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9508d57\",\"repeater_bg_image\":{\"id\":2328,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-20.png\"}}]},\"elements\":[{\"id\":\"396d96cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d8068d5\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Basic\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Basic\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Random Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Calendar Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Usage-based (Metered) Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\",\"_id\":\"0c61060\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"67.99\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555E6\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FD7B03\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#000000\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#000000\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#FD7B03\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"cyrcle\",\"badge_hr_position\":\"left\",\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_hover_bg_color_color\":\"#3444E6\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"},\"badge_cyrcle_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"period_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"heading_title_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"4e132327\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36b0bfe2\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Standard\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Standard\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"249\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_style\":\"none\",\"badge_title\":\"Save \\u20ac 50\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#4C5BEE\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#4C5BEE\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FFFFFF\",\"feature_bg_color\":\"#4C5BEE\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#4C5BEE\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#FFFFFF\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#FFFFFF\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"#FFFFFF\",\"btn_hover_color\":\"#4C5BEE\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#FFFFFF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"period_hr_position\":\"beside\",\"feature_align\":\"left\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FFFFFF00\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"btn_typography_font_weight\":\"600\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"heading_icon_color\":\"\",\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_color\":\"#E7E7E7\",\"period_color\":\"#4C5BEE\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#FFFFFF\",\"text_typography_font_weight\":\"600\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"_background_color\":\"#4C5BEE\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"btn_border_type\":\"solid\"},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"3999bdf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"background_hover_color\":\"#4C5BEE\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"39f7bb66\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Premium\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Premium\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Calendar Billing\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Usage-based (Metered) Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"99\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FD7B03\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#000000\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#000000\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"none\",\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FD7B03\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#3444E6\",\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_weight\":\"600\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2728,2382,'_elementor_page_assets','a:0:{}'),(2731,2383,'_wp_page_template','default'),(2732,2383,'_elementor_edit_mode','builder'),(2733,2383,'_elementor_template_type','wp-page'),(2734,2383,'_elementor_version','3.9.0'),(2735,2383,'_elementor_data','[{\"id\":\"1ac3a9fa1\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#F6F6F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"bg_image\":{\"id\":2329,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-21.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"78bd98d\",\"repeater_bg_image\":{\"id\":2330,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-22.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"64d2711\",\"repeater_bg_image\":{\"id\":2331,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-23.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b023980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34392f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Membership for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b59516d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ae5d61d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"bg_image\":{\"id\":2326,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-18.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"8623327\",\"repeater_bg_image\":{\"id\":2327,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-19.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9508d57\",\"repeater_bg_image\":{\"id\":2328,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-20.png\"}}]},\"elements\":[{\"id\":\"396d96cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d8068d5\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Basic\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Basic\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Random Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Calendar Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Usage-based (Metered) Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\",\"_id\":\"0c61060\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"67.99\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555E6\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FD7B03\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#000000\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#000000\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#FD7B03\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"cyrcle\",\"badge_hr_position\":\"left\",\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_hover_bg_color_color\":\"#3444E6\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"},\"badge_cyrcle_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"period_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"heading_title_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"4e132327\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36b0bfe2\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Standard\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Standard\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"249\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_style\":\"none\",\"badge_title\":\"Save \\u20ac 50\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#4C5BEE\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#4C5BEE\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FFFFFF\",\"feature_bg_color\":\"#4C5BEE\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#4C5BEE\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#FFFFFF\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#FFFFFF\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"#FFFFFF\",\"btn_hover_color\":\"#4C5BEE\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#FFFFFF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"period_hr_position\":\"beside\",\"feature_align\":\"left\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FFFFFF00\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"btn_typography_font_weight\":\"600\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"heading_icon_color\":\"\",\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_color\":\"#E7E7E7\",\"period_color\":\"#4C5BEE\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#FFFFFF\",\"text_typography_font_weight\":\"600\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"_background_color\":\"#4C5BEE\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"btn_border_type\":\"solid\"},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"3999bdf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"background_hover_color\":\"#4C5BEE\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"39f7bb66\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Premium\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Premium\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Calendar Billing\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Usage-based (Metered) Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"99\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FD7B03\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#000000\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#000000\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"none\",\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FD7B03\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#3444E6\",\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_weight\":\"600\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2736,2383,'_elementor_page_assets','a:0:{}'),(2738,2384,'_wp_page_template','default'),(2739,2384,'_elementor_edit_mode','builder'),(2740,2384,'_elementor_template_type','wp-page'),(2741,2384,'_elementor_version','3.9.0'),(2742,2384,'_elementor_data','[{\"id\":\"1ac3a9fa1\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#F6F6F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"bg_image\":{\"id\":2329,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-21.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"78bd98d\",\"repeater_bg_image\":{\"id\":2330,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-22.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"64d2711\",\"repeater_bg_image\":{\"id\":2331,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-23.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b023980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34392f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Membership for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b59516d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ae5d61d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"bg_image\":{\"id\":2326,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-18.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"8623327\",\"repeater_bg_image\":{\"id\":2327,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-19.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9508d57\",\"repeater_bg_image\":{\"id\":2328,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-20.png\"}}]},\"elements\":[{\"id\":\"396d96cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d8068d5\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Basic\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Basic\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Random Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Calendar Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Usage-based (Metered) Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\",\"_id\":\"0c61060\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"67.99\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555E6\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FD7B03\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#000000\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#000000\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#FD7B03\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"cyrcle\",\"badge_hr_position\":\"left\",\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_hover_bg_color_color\":\"#3444E6\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"},\"badge_cyrcle_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"period_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"heading_title_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"4e132327\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36b0bfe2\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Standard\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Standard\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"249\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_style\":\"none\",\"badge_title\":\"Save \\u20ac 50\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#4C5BEE\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#4C5BEE\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FFFFFF\",\"feature_bg_color\":\"#4C5BEE\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#4C5BEE\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#FFFFFF\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#FFFFFF\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"#FFFFFF\",\"btn_hover_color\":\"#4C5BEE\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#FFFFFF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"period_hr_position\":\"beside\",\"feature_align\":\"left\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FFFFFF00\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"btn_typography_font_weight\":\"600\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"heading_icon_color\":\"\",\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_color\":\"#E7E7E7\",\"period_color\":\"#4C5BEE\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#FFFFFF\",\"text_typography_font_weight\":\"600\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"_background_color\":\"#4C5BEE\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"btn_border_type\":\"solid\"},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"3999bdf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"background_hover_color\":\"#4C5BEE\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"39f7bb66\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Premium\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Premium\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Calendar Billing\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Usage-based (Metered) Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"99\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FD7B03\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#000000\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#000000\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"none\",\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FD7B03\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#3444E6\",\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_weight\":\"600\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2743,2384,'_elementor_page_assets','a:0:{}'),(2745,2385,'_wp_page_template','default'),(2746,2385,'_elementor_edit_mode','builder'),(2747,2385,'_elementor_template_type','wp-page'),(2748,2385,'_elementor_version','3.9.0'),(2749,2385,'_elementor_data','[{\"id\":\"1ac3a9fa1\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#F6F6F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"bg_image\":{\"id\":2329,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-21.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"78bd98d\",\"repeater_bg_image\":{\"id\":2330,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-22.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"64d2711\",\"repeater_bg_image\":{\"id\":2331,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-23.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b023980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34392f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Membership for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b59516d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ae5d61d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"bg_image\":{\"id\":2326,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-18.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"8623327\",\"repeater_bg_image\":{\"id\":2327,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-19.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9508d57\",\"repeater_bg_image\":{\"id\":2328,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-20.png\"}}]},\"elements\":[{\"id\":\"396d96cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d8068d5\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Basic\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Basic\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Random Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Calendar Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Usage-based (Metered) Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\",\"_id\":\"0c61060\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"67.99\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555E6\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FD7B03\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#000000\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FD7B03\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#000000\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#FD7B03\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"cyrcle\",\"badge_hr_position\":\"left\",\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_hover_bg_color_color\":\"#3444E6\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"},\"badge_cyrcle_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"period_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"heading_title_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"4e132327\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36b0bfe2\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Standard\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Standard\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"249\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_style\":\"none\",\"badge_title\":\"Save \\u20ac 50\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#4C5BEE\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#4C5BEE\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FFFFFF\",\"feature_bg_color\":\"#4C5BEE\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#4C5BEE\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#FFFFFF\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#FFFFFF\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"#FFFFFF\",\"btn_hover_color\":\"#4C5BEE\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#4C5BEE\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#FFFFFF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"period_hr_position\":\"beside\",\"feature_align\":\"left\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FFFFFF00\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"btn_typography_font_weight\":\"600\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"heading_icon_color\":\"\",\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_color\":\"#E7E7E7\",\"period_color\":\"#4C5BEE\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#FFFFFF\",\"text_typography_font_weight\":\"600\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"_background_color\":\"#FD7B03\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"btn_border_type\":\"solid\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"3999bdf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"background_hover_color\":\"#4C5BEE\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"39f7bb66\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Premium\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Premium\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Calendar Billing\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Usage-based (Metered) Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"99\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FD7B03\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#000000\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FD7B03\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#000000\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"none\",\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FD7B03\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#3444E6\",\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_weight\":\"600\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2750,2385,'_elementor_page_assets','a:0:{}'),(2753,2386,'_wp_page_template','default'),(2754,2386,'_elementor_edit_mode','builder'),(2755,2386,'_elementor_template_type','wp-page'),(2756,2386,'_elementor_version','3.9.0'),(2757,2386,'_elementor_data','[{\"id\":\"1ac3a9fa1\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#F6F6F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"bg_image\":{\"id\":2329,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-21.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"78bd98d\",\"repeater_bg_image\":{\"id\":2330,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-22.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"64d2711\",\"repeater_bg_image\":{\"id\":2331,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-23.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b023980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34392f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Membership for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b59516d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ae5d61d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"bg_image\":{\"id\":2326,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-18.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"8623327\",\"repeater_bg_image\":{\"id\":2327,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-19.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9508d57\",\"repeater_bg_image\":{\"id\":2328,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-20.png\"}}]},\"elements\":[{\"id\":\"396d96cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d8068d5\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Basic\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Basic\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Random Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Calendar Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Usage-based (Metered) Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\",\"_id\":\"0c61060\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"67.99\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555E6\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FD7B03\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#000000\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FD7B03\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#000000\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#FD7B03\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"cyrcle\",\"badge_hr_position\":\"left\",\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_hover_bg_color_color\":\"#3444E6\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"},\"badge_cyrcle_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"period_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"heading_title_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"4e132327\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36b0bfe2\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Standard\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Standard\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"249\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_style\":\"none\",\"badge_title\":\"Save \\u20ac 50\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#4C5BEE\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#4C5BEE\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FFFFFF\",\"feature_bg_color\":\"#4C5BEE\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#4C5BEE\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#FFFFFF\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#FFFFFF\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"#FFFFFF\",\"btn_hover_color\":\"#4C5BEE\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#4C5BEE\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#FFFFFF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"period_hr_position\":\"beside\",\"feature_align\":\"left\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FFFFFF00\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"btn_typography_font_weight\":\"600\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"heading_icon_color\":\"\",\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_color\":\"#E7E7E7\",\"period_color\":\"#4C5BEE\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#FFFFFF\",\"text_typography_font_weight\":\"600\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"_background_color\":\"#FD7B03\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"btn_border_type\":\"solid\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"3999bdf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"background_hover_color\":\"#4C5BEE\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"39f7bb66\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Premium\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Premium\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Calendar Billing\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Usage-based (Metered) Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"99\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FD7B03\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#000000\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FD7B03\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#000000\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"none\",\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FD7B03\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#3444E6\",\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_weight\":\"600\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2758,2386,'_elementor_page_assets','a:0:{}'),(2760,2387,'_wp_page_template','default'),(2761,2387,'_elementor_edit_mode','builder'),(2762,2387,'_elementor_template_type','wp-page'),(2763,2387,'_elementor_version','3.9.0'),(2764,2387,'_elementor_data','[{\"id\":\"1ac3a9fa1\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#F6F6F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"bg_image\":{\"id\":2329,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-21.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"78bd98d\",\"repeater_bg_image\":{\"id\":2330,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-22.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"64d2711\",\"repeater_bg_image\":{\"id\":2331,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-23.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b023980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34392f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Membership for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b59516d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ae5d61d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"bg_image\":{\"id\":2326,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-18.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"8623327\",\"repeater_bg_image\":{\"id\":2327,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-19.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9508d57\",\"repeater_bg_image\":{\"id\":2328,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-20.png\"}}]},\"elements\":[{\"id\":\"396d96cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d8068d5\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Basic\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Basic\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Random Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Calendar Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Usage-based (Metered) Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\",\"_id\":\"0c61060\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"67.99\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555E6\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FD7B03\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#000000\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FD7B03\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#000000\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#FD7B03\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"cyrcle\",\"badge_hr_position\":\"left\",\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_hover_bg_color_color\":\"#3444E6\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"},\"badge_cyrcle_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"period_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"heading_title_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"4e132327\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36b0bfe2\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Standard\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Standard\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"249\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_style\":\"none\",\"badge_title\":\"Save \\u20ac 50\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#4C5BEE\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#4C5BEE\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FFFFFF\",\"feature_bg_color\":\"#4C5BEE\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#4C5BEE\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#FFFFFF\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#FFFFFF\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"#FFFFFF\",\"btn_hover_color\":\"#4C5BEE\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#4C5BEE\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#FFFFFF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"period_hr_position\":\"beside\",\"feature_align\":\"left\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FFFFFF00\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"btn_typography_font_weight\":\"600\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"heading_icon_color\":\"\",\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_color\":\"#E7E7E7\",\"period_color\":\"#4C5BEE\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#FFFFFF\",\"text_typography_font_weight\":\"600\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"_background_color\":\"#FD7B03\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"btn_border_type\":\"solid\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"3999bdf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"background_hover_color\":\"#4C5BEE\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"39f7bb66\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Premium\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Premium\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Calendar Billing\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Usage-based (Metered) Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"99\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FD7B03\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#000000\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FD7B03\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#000000\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"none\",\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FD7B03\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#3444E6\",\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_weight\":\"600\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2765,2387,'_elementor_page_assets','a:0:{}'),(2767,2388,'_wp_page_template','default'),(2768,2388,'_elementor_edit_mode','builder'),(2769,2388,'_elementor_template_type','wp-page'),(2770,2388,'_elementor_version','3.9.0'),(2771,2388,'_elementor_data','[{\"id\":\"1ac3a9fa1\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#F6F6F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"bg_image\":{\"id\":2329,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-21.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"78bd98d\",\"repeater_bg_image\":{\"id\":2330,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-22.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"64d2711\",\"repeater_bg_image\":{\"id\":2331,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-23.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b023980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34392f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Membership for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b59516d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ae5d61d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"bg_image\":{\"id\":2326,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-18.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"8623327\",\"repeater_bg_image\":{\"id\":2327,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-19.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9508d57\",\"repeater_bg_image\":{\"id\":2328,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-20.png\"}}]},\"elements\":[{\"id\":\"396d96cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d8068d5\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Basic\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Basic\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Random Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Calendar Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Usage-based (Metered) Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\",\"_id\":\"0c61060\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"67.99\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555E6\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FD7B03\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#000000\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FD7B03\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#000000\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#FD7B03\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"cyrcle\",\"badge_hr_position\":\"left\",\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_hover_bg_color_color\":\"#3444E6\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"},\"badge_cyrcle_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"period_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"heading_title_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"4e132327\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36b0bfe2\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Standard\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Standard\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"249\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_style\":\"none\",\"badge_title\":\"Save \\u20ac 50\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#4C5BEE\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#4C5BEE\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FFFFFF\",\"feature_bg_color\":\"#4C5BEE\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#4C5BEE\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#FFFFFF\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#FFFFFF\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"#FFFFFF\",\"btn_hover_color\":\"#4C5BEE\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#FFFFFF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"period_hr_position\":\"beside\",\"feature_align\":\"left\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FFFFFF00\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"btn_typography_font_weight\":\"600\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"heading_icon_color\":\"\",\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_color\":\"#E7E7E7\",\"period_color\":\"#4C5BEE\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#FFFFFF\",\"text_typography_font_weight\":\"600\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"_background_color\":\"#FD7B03\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"btn_border_type\":\"solid\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"3999bdf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"background_hover_color\":\"#4C5BEE\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"39f7bb66\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Premium\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Premium\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Calendar Billing\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Usage-based (Metered) Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"99\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FD7B03\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#000000\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FD7B03\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#000000\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"none\",\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FD7B03\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#3444E6\",\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_weight\":\"600\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2772,2388,'_elementor_page_assets','a:0:{}'),(2775,2389,'_wp_page_template','default'),(2776,2389,'_elementor_edit_mode','builder'),(2777,2389,'_elementor_template_type','wp-page'),(2778,2389,'_elementor_version','3.9.0'),(2779,2389,'_elementor_data','[{\"id\":\"1ac3a9fa1\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#F6F6F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"bg_image\":{\"id\":2329,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-21.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"78bd98d\",\"repeater_bg_image\":{\"id\":2330,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-22.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"64d2711\",\"repeater_bg_image\":{\"id\":2331,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-23.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b023980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34392f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Membership for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b59516d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ae5d61d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"bg_image\":{\"id\":2326,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-18.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"8623327\",\"repeater_bg_image\":{\"id\":2327,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-19.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9508d57\",\"repeater_bg_image\":{\"id\":2328,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-20.png\"}}]},\"elements\":[{\"id\":\"396d96cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d8068d5\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Basic\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Basic\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Random Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Calendar Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Usage-based (Metered) Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\",\"_id\":\"0c61060\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"67.99\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555E6\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FD7B03\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#000000\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FD7B03\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#000000\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#FD7B03\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"cyrcle\",\"badge_hr_position\":\"left\",\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_hover_bg_color_color\":\"#3444E6\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"},\"badge_cyrcle_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"period_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"heading_title_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"4e132327\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36b0bfe2\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Standard\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Standard\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"249\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_style\":\"none\",\"badge_title\":\"Save \\u20ac 50\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#4C5BEE\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#4C5BEE\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FFFFFF\",\"feature_bg_color\":\"#4C5BEE\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#4C5BEE\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#FFFFFF\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#FFFFFF\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"#FFFFFF\",\"btn_hover_color\":\"#4C5BEE\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#FFFFFF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"period_hr_position\":\"beside\",\"feature_align\":\"left\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FFFFFF00\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"btn_typography_font_weight\":\"600\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"heading_icon_color\":\"\",\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_color\":\"#E7E7E7\",\"period_color\":\"#4C5BEE\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#FFFFFF\",\"text_typography_font_weight\":\"600\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"_background_color\":\"#FD7B03\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"btn_border_type\":\"solid\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"3999bdf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"background_hover_color\":\"#4C5BEE\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"39f7bb66\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Premium\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Premium\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Calendar Billing\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Usage-based (Metered) Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"99\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FD7B03\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#000000\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FD7B03\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#000000\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"none\",\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FD7B03\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#3444E6\",\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_weight\":\"600\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2780,2389,'_elementor_page_assets','a:0:{}'),(2782,2390,'_wp_page_template','default'),(2783,2390,'_elementor_edit_mode','builder'),(2784,2390,'_elementor_template_type','wp-page'),(2785,2390,'_elementor_version','3.9.0'),(2786,2390,'_elementor_data','[{\"id\":\"1ac3a9fa1\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#F6F6F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"bg_image\":{\"id\":2329,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-21.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"78bd98d\",\"repeater_bg_image\":{\"id\":2330,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-22.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"64d2711\",\"repeater_bg_image\":{\"id\":2331,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-23.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b023980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34392f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Membership for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b59516d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ae5d61d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"bg_image\":{\"id\":2326,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-18.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"8623327\",\"repeater_bg_image\":{\"id\":2327,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-19.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9508d57\",\"repeater_bg_image\":{\"id\":2328,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-20.png\"}}]},\"elements\":[{\"id\":\"396d96cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d8068d5\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Basic\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Basic\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Random Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Calendar Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Usage-based (Metered) Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\",\"_id\":\"0c61060\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"67.99\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555E6\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FD7B03\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#000000\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FD7B03\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#000000\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#FD7B03\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"cyrcle\",\"badge_hr_position\":\"left\",\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_hover_bg_color_color\":\"#3444E6\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"},\"badge_cyrcle_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"period_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"heading_title_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"4e132327\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36b0bfe2\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Standard\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Standard\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"249\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_style\":\"none\",\"badge_title\":\"Save \\u20ac 50\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#4C5BEE\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#4C5BEE\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FFFFFF\",\"feature_bg_color\":\"#4C5BEE\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#4C5BEE\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#FFFFFF\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#FFFFFF\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"#FFFFFF\",\"btn_hover_color\":\"#4C5BEE\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#FFFFFF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"period_hr_position\":\"beside\",\"feature_align\":\"left\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FFFFFF00\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"btn_typography_font_weight\":\"600\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"heading_icon_color\":\"\",\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_color\":\"#E7E7E7\",\"period_color\":\"#4C5BEE\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#FFFFFF\",\"text_typography_font_weight\":\"600\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"_background_color\":\"#FD7B03\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"btn_border_type\":\"solid\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"3999bdf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"background_hover_color\":\"#4C5BEE\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"39f7bb66\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Premium\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Premium\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Calendar Billing\",\"feature_icon_color\":\"#3343EC\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Usage-based (Metered) Billing\",\"feature_icon_color\":\"#3343EC\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"99\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FD7B03\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#000000\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FD7B03\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#000000\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"none\",\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FD7B03\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#3444E6\",\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_weight\":\"600\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2787,2390,'_elementor_page_assets','a:0:{}'),(2789,2391,'_wp_page_template','default'),(2790,2391,'_elementor_edit_mode','builder'),(2791,2391,'_elementor_template_type','wp-page'),(2792,2391,'_elementor_version','3.9.0'),(2793,2391,'_elementor_data','[{\"id\":\"1ac3a9fa1\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#F6F6F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"bg_image\":{\"id\":2329,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-21.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"78bd98d\",\"repeater_bg_image\":{\"id\":2330,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-22.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"64d2711\",\"repeater_bg_image\":{\"id\":2331,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-23.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b023980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34392f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Membership for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b59516d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ae5d61d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"bg_image\":{\"id\":2326,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-18.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"8623327\",\"repeater_bg_image\":{\"id\":2327,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-19.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9508d57\",\"repeater_bg_image\":{\"id\":2328,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-20.png\"}}]},\"elements\":[{\"id\":\"396d96cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d8068d5\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Basic\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Basic\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#FD7B03\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FD7B03\",\"feature_tooltip_text\":\"Random Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Calendar Billing\",\"feature_icon_color\":\"#FD7B03\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Usage-based (Metered) Billing\",\"feature_icon_color\":\"#FD7B03\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\",\"_id\":\"0c61060\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"24\\/7 Support\",\"feature_icon_color\":\"#FD7B03\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"67.99\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555E6\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FD7B03\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#000000\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FD7B03\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#000000\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#4C5BEE\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#FD7B03\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"cyrcle\",\"badge_hr_position\":\"left\",\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_hover_bg_color_color\":\"#3444E6\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"},\"badge_cyrcle_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"period_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"heading_title_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"4e132327\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36b0bfe2\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Standard\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Standard\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FFFFFF\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"249\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_style\":\"none\",\"badge_title\":\"Save \\u20ac 50\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#4C5BEE\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#4C5BEE\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FFFFFF\",\"feature_bg_color\":\"#4C5BEE\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#4C5BEE\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#FFFFFF\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#FFFFFF\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"#FFFFFF\",\"btn_hover_color\":\"#4C5BEE\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#3343EC\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#FFFFFF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"period_hr_position\":\"beside\",\"feature_align\":\"left\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FFFFFF00\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"btn_typography_font_weight\":\"600\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"heading_icon_color\":\"\",\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_color\":\"#E7E7E7\",\"period_color\":\"#4C5BEE\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#FFFFFF\",\"text_typography_font_weight\":\"600\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_font_weight\":\"600\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"_background_color\":\"#FD7B03\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"btn_border_type\":\"solid\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"3999bdf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"background_hover_color\":\"#4C5BEE\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"39f7bb66\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"type_select\":\"text\",\"feature_text\":\"Custom themes\",\"feature_icon_color\":\"#FF4535\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Premium\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"_id\":\"cd58828\"},{\"_id\":\"d85f307\",\"heading_title\":\"Premium\",\"heading_sub_title\":\"\",\"heading_icon_type\":\"image\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Automated Invoicing\",\"feature_icon_color\":\"#FD7B03\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"18203ac\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Offline Invoicing\",\"feature_icon_color\":\"#FD7B03\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"e2a53a8\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Calendar Billing\",\"feature_icon_color\":\"#FD7B03\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"baa2457\",\"feature_linethrough_color\":\"#3343EC\"},{\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Usage-based (Metered) Billing\",\"feature_icon_color\":\"#FD7B03\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ff0b5b\",\"feature_linethrough_color\":\"#3343EC\",\"feature_linethrough_text_color\":\"#BCBCBC\"},{\"type_select\":\"price\",\"_id\":\"755accd\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"99\",\"sub_price\":\"99\",\"currency_symbol\":\"euro\",\"currency\":\"$\",\"sale\":\"yes\",\"old_price\":\"\",\"preiod\":\"\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Button\"},{\"type_select\":\"button\",\"_id\":\"1e3a219\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_text\":\"Choose Plan\"}],\"badge_title\":\"Save\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#FFFFFF\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_sub_title_color\":\"#555555\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_weight\":\"400\",\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#FFFFFF\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#FD7B03\",\"feature_bg_color\":\"#FFFFFF\",\"feature_width\":{\"unit\":\"px\",\"size\":221,\"sizes\":[]},\"feature_divider\":\"\",\"feature_divider_type\":\"solid\",\"feature_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"feature_divider_width\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#FFFFFF\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"btn_bg_color\":\"rgba(239, 238, 248, 0)\",\"btn_hover_bg_color\":\"#3343EC\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":23,\"spread\":0,\"color\":\"rgba(87, 45, 3, 0.11)\"},\"wrapper_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"heading_icon_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"heading_bg_color_position\":\"initial\",\"heading_bg_color_xpos\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"heading_bg_color_ypos\":{\"unit\":\"px\",\"size\":-72,\"sizes\":[]},\"heading_bg_color_repeat\":\"no-repeat\",\"heading_bg_color_size\":\"initial\",\"heading_bg_color_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"heading_title_color\":\"#000000\",\"price_wrap_bg_color_position\":\"initial\",\"price_typography_typography\":\"custom\",\"price_typography_font_weight\":\"700\",\"btn_color\":\"#FFFFFF\",\"btn_border_color\":\"\",\"btn_hover_color\":\"#FFFFFF\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FD7B03\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"70\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"price_wrap_bg_color_xpos\":{\"unit\":\"px\",\"size\":-112,\"sizes\":[]},\"price_wrap_bg_color_ypos\":{\"unit\":\"px\",\"size\":-123,\"sizes\":[]},\"price_wrap_bg_color_repeat\":\"no-repeat\",\"price_wrap_bg_color_size\":\"initial\",\"price_wrap_bg_color_bg_width\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"text_section_bg_color_position\":\"initial\",\"text_section_bg_color_xpos\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"text_section_bg_color_repeat\":\"no-repeat\",\"text_section_bg_color_size\":\"initial\",\"text_section_bg_color_ypos\":{\"unit\":\"px\",\"size\":-195,\"sizes\":[]},\"_background_position\":\"initial\",\"_background_xpos\":{\"unit\":\"px\",\"size\":-544,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":-615,\"sizes\":[]},\"_background_size\":\"auto\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"badge_distance\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"badge_bg_color\":\"#F25836\",\"badge_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"feature_color\":\"#000000\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"period_color\":\"#FD7B03\",\"period_hr_position\":\"beside\",\"feature_typography_typography\":\"custom\",\"feature_align\":\"left\",\"feature_tooltip_typography_text_decoration\":\"overline\",\"feature_tooltip_typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#4C5BEE\",\"heading_icon_color\":\"\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"old_price_color\":\"#929FDD\",\"old_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"feature_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"wrapper_hover_border_color\":\"#FF8080\",\"wrapper_hover_box_shadow_box_shadow\":{\"horizontal\":-12,\"vertical\":-46,\"blur\":45,\"spread\":-43,\"color\":\"rgba(0,0,0,0.5)\"},\"wrapper_hover_box_shadow_box_shadow_position\":\"inset\",\"badge_style\":\"none\",\"badge_hr_position\":\"left\",\"badge_cyrcle_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"badge_cyrcle_top_distance\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"badge_cyrcle_side_distance\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"btn_bg_color_background\":\"classic\",\"btn_bg_color_color\":\"#FD7B03\",\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"sub_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"currency_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"old_price_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"period_typography_typography\":\"custom\",\"period_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_hover_bg_color_color\":\"#3444E6\",\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"10\",\"left\":\"50\",\"isLinked\":false},\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_weight\":\"700\",\"badge_cyrcle_side_distance_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"heading_sub_title_typography_font_family\":\"Roboto\",\"price_typography_font_family\":\"Poppins\",\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"sub_price_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"currency_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"600\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"600\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"text_typography_font_family\":\"Open Sans\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Roboto\",\"badge_typography_font_weight\":\"600\",\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"text_typography_font_weight\":\"600\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"btn_transition_duration\":0.5,\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"btn_hover_bg_color_background\":\"classic\",\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_hover_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(52.00000000000002, 67.9999999999999, 230.00000000000006, 0.29)\"}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2794,2391,'_elementor_page_assets','a:0:{}'),(2797,2392,'_edit_lock','1675681486:1'),(2798,2392,'_edit_last','1'),(2799,2392,'total_sales','0'),(2800,2392,'_tax_status','taxable'),(2801,2392,'_tax_class',''),(2802,2392,'_manage_stock','no'),(2803,2392,'_backorders','no'),(2804,2392,'_sold_individually','no'),(2805,2392,'_virtual','no'),(2806,2392,'_downloadable','no'),(2807,2392,'_download_limit','-1'),(2808,2392,'_download_expiry','-1'),(2809,2392,'_stock',NULL),(2810,2392,'_stock_status','instock'),(2811,2392,'_wc_average_rating','0'),(2812,2392,'_wc_review_count','0'),(2813,2392,'_product_version','7.1.0'),(2814,2392,'wc_sf_hide_cart_button','yes'),(2815,2392,'wc_sf_meta_repeatable_fields','a:2:{i:0;a:3:{s:21:\"wc_sf_hpp_button_text\";s:17:\"Gift Subscription\";s:20:\"wc_sf_hpp_product_id\";s:36:\"8f38937f-4da7-41d2-9892-f13e70a0eaa6\";s:22:\"wc_sf_hpp_plan_id_name\";s:48:\"2b30d9cf-8fbb-4dd3-95ec-04093bb945d7__weeklyplan\";}i:1;a:3:{s:21:\"wc_sf_hpp_button_text\";s:20:\"Regular Subscription\";s:20:\"wc_sf_hpp_product_id\";s:36:\"8f38937f-4da7-41d2-9892-f13e70a0eaa6\";s:22:\"wc_sf_hpp_plan_id_name\";s:49:\"53231721-4c09-40b3-aaa6-703ef7745a5e__monthlyplan\";}}'),(2816,2393,'_edit_last','1'),(2817,2393,'_wp_page_template','default'),(2818,2393,'_edit_lock','1675677445:1'),(2819,2393,'_elementor_edit_mode','builder'),(2820,2393,'_elementor_template_type','wp-page'),(2821,2393,'_elementor_version','3.10.1'),(2822,2395,'_wp_page_template','default'),(2823,2395,'_elementor_edit_mode','builder'),(2824,2395,'_elementor_template_type','wp-page'),(2825,2395,'_elementor_version','3.9.0'),(2826,2396,'_wp_page_template','default'),(2827,2396,'_elementor_edit_mode','builder'),(2828,2396,'_elementor_template_type','wp-page'),(2829,2396,'_elementor_version','3.9.0'),(2830,2393,'_elementor_data','[{\"id\":\"b3cf456\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"aba6f05\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6075acf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"89a2308\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e810bbe\",\"elType\":\"widget\",\"settings\":{\"query_selection\":\"manual\",\"query_manual_products\":[\"2099\",\"409\"],\"query_not_found_text\":\"No Posts Found!\",\"layout_filters\":\"\",\"grid_linked_products_heading\":\"You may be interested in...\",\"grid_elements\":[{\"_id\":\"2d3a373\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"bb864c8\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\",\"grid_media_border_color\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"400\",\"product_price_color\":\"#333333\",\"product_price_typography_typography\":\"custom\",\"product_price_typography_font_family\":\"Roboto\",\"product_price_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"product_price_typography_font_weight\":\"600\",\"layout_gutter_hr\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"layout_animation\":\"zoom\",\"grid_item_bg_color\":\"#DDD4D40A\"},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(2831,2397,'_wp_page_template','default'),(2832,2397,'_elementor_edit_mode','builder'),(2833,2397,'_elementor_template_type','wp-page'),(2834,2397,'_elementor_version','3.9.0'),(2835,2397,'_elementor_data','[{\"id\":\"b3cf456\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"aba6f05\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6075acf\"}]},\"elements\":[{\"id\":\"89a2308\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e810bbe\",\"elType\":\"widget\",\"settings\":{\"query_selection\":\"manual\",\"query_manual_products\":[\"2099\",\"409\"],\"query_not_found_text\":\"No Posts Found!\",\"grid_linked_products_heading\":\"You may be interested in...\",\"grid_elements\":[{\"_id\":\"2d3a373\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"bb864c8\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\"},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(2836,2393,'_elementor_page_assets','a:0:{}'),(2838,2398,'_wp_page_template','default'),(2839,2398,'_elementor_edit_mode','builder'),(2840,2398,'_elementor_template_type','wp-page'),(2841,2398,'_elementor_version','3.9.0'),(2842,2398,'_elementor_data','[{\"id\":\"b3cf456\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"aba6f05\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6075acf\"}]},\"elements\":[{\"id\":\"89a2308\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e810bbe\",\"elType\":\"widget\",\"settings\":{\"query_selection\":\"manual\",\"query_manual_products\":[\"2099\",\"409\"],\"query_not_found_text\":\"No Posts Found!\",\"grid_linked_products_heading\":\"You may be interested in...\",\"grid_elements\":[{\"_id\":\"2d3a373\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"bb864c8\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\"},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(2843,2398,'_elementor_page_assets','a:0:{}'),(2845,2399,'_wp_page_template','default'),(2846,2399,'_elementor_edit_mode','builder'),(2847,2399,'_elementor_template_type','wp-page'),(2848,2399,'_elementor_version','3.9.0'),(2849,2399,'_elementor_data','[{\"id\":\"b3cf456\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"aba6f05\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6075acf\"}]},\"elements\":[{\"id\":\"89a2308\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e810bbe\",\"elType\":\"widget\",\"settings\":{\"query_selection\":\"manual\",\"query_manual_products\":[\"2099\",\"409\"],\"query_not_found_text\":\"No Posts Found!\",\"grid_linked_products_heading\":\"You may be interested in...\",\"grid_elements\":[{\"_id\":\"2d3a373\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"bb864c8\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\"},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(2850,2399,'_elementor_page_assets','a:0:{}'),(2852,2400,'_wp_page_template','default'),(2853,2400,'_elementor_edit_mode','builder'),(2854,2400,'_elementor_template_type','wp-page'),(2855,2400,'_elementor_version','3.9.0'),(2856,2400,'_elementor_data','[{\"id\":\"b3cf456\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"aba6f05\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6075acf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"89a2308\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e810bbe\",\"elType\":\"widget\",\"settings\":{\"query_selection\":\"manual\",\"query_manual_products\":[\"2099\",\"409\"],\"query_not_found_text\":\"No Posts Found!\",\"grid_linked_products_heading\":\"You may be interested in...\",\"grid_elements\":[{\"_id\":\"2d3a373\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"bb864c8\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\"},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(2857,2400,'_elementor_page_assets','a:0:{}'),(2859,2401,'_elementor_edit_mode','builder'),(2860,2401,'_elementor_template_type','wp-page'),(2861,2401,'_elementor_version','3.9.0'),(2862,2401,'_wp_page_template','default'),(2863,2401,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#FFFAF7\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":774,\"sizes\":[]},\"background_background\":\"classic\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}],\"z_index\":1},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"align\":\"center\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.12)\"}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Price: [custom_query_paramter paramter_type=\'price\']<\\/p>\",\"text_color\":\"#000000C7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"47e7cf3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"35c59a1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"fbc4451\"}],\"shape_divider_top\":\"triangle\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":145,\"sizes\":[]},\"shape_divider_top_negative\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":0,\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"00eb539\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f8703a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2864,2401,'_elementor_page_assets','a:0:{}'),(2865,2402,'_elementor_edit_mode','builder'),(2866,2402,'_elementor_template_type','wp-page'),(2867,2402,'_elementor_version','3.9.0'),(2868,2402,'_wp_page_template','default'),(2869,2402,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":765,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#FFFAF7\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}]},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":774,\"sizes\":[]},\"background_background\":\"classic\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}],\"z_index\":1},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"align\":\"center\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.12)\"}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Price: [custom_query_paramter paramter_type=\'price\']<\\/p>\",\"text_color\":\"#000000C7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"47e7cf3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"35c59a1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"fbc4451\"}],\"shape_divider_top\":\"triangle\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":145,\"sizes\":[]},\"shape_divider_top_negative\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":0,\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"00eb539\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f8703a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2870,2402,'_elementor_page_assets','a:0:{}'),(2871,2403,'_elementor_edit_mode','builder'),(2872,2403,'_elementor_template_type','wp-page'),(2873,2403,'_elementor_version','3.9.0'),(2874,2403,'_wp_page_template','default'),(2875,2403,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#FFFAF7\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}],\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":774,\"sizes\":[]},\"background_background\":\"classic\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}],\"z_index\":1},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"align\":\"center\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.12)\"}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Price: [custom_query_paramter paramter_type=\'price\']<\\/p>\",\"text_color\":\"#000000C7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"47e7cf3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"35c59a1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"fbc4451\"}],\"shape_divider_top\":\"triangle\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":145,\"sizes\":[]},\"shape_divider_top_negative\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":0,\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"00eb539\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f8703a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2876,2403,'_elementor_page_assets','a:0:{}'),(2878,2404,'_elementor_edit_mode','builder'),(2879,2404,'_elementor_template_type','wp-page'),(2880,2404,'_elementor_version','3.9.0'),(2881,2404,'_wp_page_template','default'),(2882,2404,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#FFFAF7\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}],\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":774,\"sizes\":[]},\"background_background\":\"classic\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}],\"z_index\":1},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"align\":\"center\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.12)\"}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Price: [custom_query_paramter paramter_type=\'price\']<\\/p>\",\"text_color\":\"#000000C7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"47e7cf3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"35c59a1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"fbc4451\"}],\"shape_divider_top\":\"triangle\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":145,\"sizes\":[]},\"shape_divider_top_negative\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":0,\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"00eb539\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f8703a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2883,2404,'_elementor_page_assets','a:0:{}'),(2885,2405,'_elementor_edit_mode','builder'),(2886,2405,'_elementor_template_type','wp-page'),(2887,2405,'_elementor_version','3.9.0'),(2888,2405,'_wp_page_template','default'),(2889,2405,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#FFFAF7\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}],\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":774,\"sizes\":[]},\"background_background\":\"classic\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}],\"z_index\":1},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"align\":\"center\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.12)\"}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Price: [custom_query_paramter paramter_type=\'price\']<\\/p>\",\"text_color\":\"#000000C7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"47e7cf3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"35c59a1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"fbc4451\"}],\"shape_divider_top\":\"triangle\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":145,\"sizes\":[]},\"shape_divider_top_negative\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":0,\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"00eb539\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f8703a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2890,2405,'_elementor_page_assets','a:0:{}'),(2892,2406,'_elementor_edit_mode','builder'),(2893,2406,'_elementor_template_type','wp-page'),(2894,2406,'_elementor_version','3.9.0'),(2895,2406,'_wp_page_template','default'),(2896,2406,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#FFFAF7\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":774,\"sizes\":[]},\"background_background\":\"classic\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}],\"z_index\":1},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"align\":\"center\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.12)\"}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Price: [custom_query_paramter paramter_type=\'price\']<\\/p>\",\"text_color\":\"#000000C7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"47e7cf3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"35c59a1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"fbc4451\"}],\"shape_divider_top\":\"triangle\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":145,\"sizes\":[]},\"shape_divider_top_negative\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":0,\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"00eb539\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f8703a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2897,2406,'_elementor_page_assets','a:0:{}'),(2900,2407,'_wp_page_template','default'),(2901,2407,'_elementor_edit_mode','builder'),(2902,2407,'_elementor_template_type','wp-page'),(2903,2407,'_elementor_version','3.9.0'),(2904,2407,'_elementor_data','[{\"id\":\"b3cf456\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"aba6f05\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6075acf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"89a2308\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e810bbe\",\"elType\":\"widget\",\"settings\":{\"query_selection\":\"manual\",\"query_manual_products\":[\"2099\",\"409\"],\"query_not_found_text\":\"No Posts Found!\",\"grid_linked_products_heading\":\"You may be interested in...\",\"grid_elements\":[{\"_id\":\"2d3a373\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"bb864c8\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\"},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(2905,2407,'_elementor_page_assets','a:0:{}'),(2906,2408,'_wp_page_template','default'),(2907,2408,'_elementor_edit_mode','builder'),(2908,2408,'_elementor_template_type','wp-page'),(2909,2408,'_elementor_version','3.9.0'),(2910,2408,'_elementor_data','[{\"id\":\"b3cf456\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"aba6f05\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6075acf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"89a2308\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e810bbe\",\"elType\":\"widget\",\"settings\":{\"query_selection\":\"manual\",\"query_manual_products\":[\"2099\",\"409\"],\"query_not_found_text\":\"No Posts Found!\",\"grid_linked_products_heading\":\"You may be interested in...\",\"grid_elements\":[{\"_id\":\"2d3a373\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"bb864c8\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\"},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(2911,2408,'_elementor_page_assets','a:0:{}'),(2912,2409,'_wp_page_template','default'),(2913,2409,'_elementor_edit_mode','builder'),(2914,2409,'_elementor_template_type','wp-page'),(2915,2409,'_elementor_version','3.9.0'),(2916,2409,'_elementor_data','[{\"id\":\"b3cf456\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"aba6f05\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6075acf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"89a2308\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e810bbe\",\"elType\":\"widget\",\"settings\":{\"query_selection\":\"manual\",\"query_manual_products\":[\"2099\",\"409\"],\"query_not_found_text\":\"No Posts Found!\",\"layout_filters\":\"\",\"grid_linked_products_heading\":\"You may be interested in...\",\"grid_elements\":[{\"_id\":\"2d3a373\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"bb864c8\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\",\"grid_media_border_color\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\",\"product_price_color\":\"#000000\",\"product_price_typography_typography\":\"custom\",\"product_price_typography_font_family\":\"Roboto\",\"product_price_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"product_price_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(2917,2409,'_elementor_page_assets','a:0:{}'),(2919,2410,'_wp_page_template','default'),(2920,2410,'_elementor_edit_mode','builder'),(2921,2410,'_elementor_template_type','wp-page'),(2922,2410,'_elementor_version','3.9.0'),(2923,2410,'_elementor_data','[{\"id\":\"b3cf456\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"aba6f05\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6075acf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"89a2308\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e810bbe\",\"elType\":\"widget\",\"settings\":{\"query_selection\":\"manual\",\"query_manual_products\":[\"2099\",\"409\"],\"query_not_found_text\":\"No Posts Found!\",\"layout_filters\":\"\",\"grid_linked_products_heading\":\"You may be interested in...\",\"grid_elements\":[{\"_id\":\"2d3a373\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"bb864c8\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\",\"grid_media_border_color\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\",\"product_price_color\":\"#000000\",\"product_price_typography_typography\":\"custom\",\"product_price_typography_font_family\":\"Roboto\",\"product_price_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"product_price_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(2924,2410,'_elementor_page_assets','a:0:{}'),(2926,2411,'_wp_page_template','default'),(2927,2411,'_elementor_edit_mode','builder'),(2928,2411,'_elementor_template_type','wp-page'),(2929,2411,'_elementor_version','3.9.0'),(2930,2411,'_elementor_data','[{\"id\":\"b3cf456\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"aba6f05\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6075acf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"89a2308\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e810bbe\",\"elType\":\"widget\",\"settings\":{\"query_selection\":\"manual\",\"query_manual_products\":[\"2099\",\"409\"],\"query_not_found_text\":\"No Posts Found!\",\"layout_filters\":\"\",\"grid_linked_products_heading\":\"You may be interested in...\",\"grid_elements\":[{\"_id\":\"2d3a373\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"bb864c8\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\",\"grid_media_border_color\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\",\"product_price_color\":\"#000000\",\"product_price_typography_typography\":\"custom\",\"product_price_typography_font_family\":\"Roboto\",\"product_price_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"product_price_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(2931,2411,'_elementor_page_assets','a:0:{}'),(2933,2412,'_wp_page_template','default'),(2934,2412,'_elementor_edit_mode','builder'),(2935,2412,'_elementor_template_type','wp-page'),(2936,2412,'_elementor_version','3.9.0'),(2937,2412,'_elementor_data','[{\"id\":\"b3cf456\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"aba6f05\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6075acf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"89a2308\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e810bbe\",\"elType\":\"widget\",\"settings\":{\"query_selection\":\"manual\",\"query_manual_products\":[\"2099\",\"409\"],\"query_not_found_text\":\"No Posts Found!\",\"layout_filters\":\"\",\"grid_linked_products_heading\":\"You may be interested in...\",\"grid_elements\":[{\"_id\":\"2d3a373\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"bb864c8\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\",\"grid_media_border_color\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\",\"product_price_color\":\"#333333\",\"product_price_typography_typography\":\"custom\",\"product_price_typography_font_family\":\"Roboto\",\"product_price_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"product_price_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(2938,2412,'_elementor_page_assets','a:0:{}'),(2941,2413,'_elementor_edit_mode','builder'),(2942,2413,'_elementor_template_type','wp-page'),(2943,2413,'_elementor_version','3.9.0'),(2944,2413,'_wp_page_template','elementor_canvas'),(2945,2413,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"abc3894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscription Management Software\",\"align\":\"center\",\"title_color\":\"#000000B5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72cd62d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/plans\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Magazine\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"eCommerce\",\"content_title_tag\":\"h2\",\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/shop\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Membership\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]},\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/membership\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2946,2413,'_elementor_page_assets','a:0:{}'),(2948,2414,'_elementor_edit_mode','builder'),(2949,2414,'_elementor_template_type','wp-page'),(2950,2414,'_elementor_version','3.9.0'),(2951,2414,'_wp_page_template','elementor_canvas'),(2952,2414,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"abc3894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscription Management Software\",\"align\":\"center\",\"title_color\":\"#000000B5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72cd62d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/plans\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Magazine\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"eCommerce\",\"content_title_tag\":\"h2\",\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/shop\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Membership\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]},\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/membership\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2953,2414,'_elementor_page_assets','a:0:{}'),(2955,2415,'_elementor_edit_mode','builder'),(2956,2415,'_elementor_template_type','wp-page'),(2957,2415,'_elementor_version','3.9.0'),(2958,2415,'_wp_page_template','elementor_canvas'),(2959,2415,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"abc3894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscription Management Software\",\"align\":\"center\",\"title_color\":\"#000000B5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72cd62d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/plans\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Magazine\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"eCommerce\",\"content_title_tag\":\"h2\",\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/demo-shop\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Membership\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]},\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/membership\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2960,2415,'_elementor_page_assets','a:0:{}'),(2962,2416,'_elementor_edit_mode','builder'),(2963,2416,'_elementor_template_type','wp-page'),(2964,2416,'_elementor_version','3.9.0'),(2965,2416,'_wp_page_template','default'),(2966,2416,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#FFFAF7\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":774,\"sizes\":[]},\"background_background\":\"classic\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}],\"z_index\":1},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"align\":\"center\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.12)\"}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Price: [custom_query_paramter paramter_type=\'price\']<\\/p>\",\"text_color\":\"#000000C7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"47e7cf3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"35c59a1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"fbc4451\"}],\"shape_divider_top\":\"triangle\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":145,\"sizes\":[]},\"shape_divider_top_negative\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":0,\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"00eb539\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f8703a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2967,2416,'_elementor_page_assets','a:0:{}'),(2969,2417,'_elementor_edit_mode','builder'),(2970,2417,'_elementor_template_type','wp-page'),(2971,2417,'_elementor_version','3.9.0'),(2972,2417,'_wp_page_template','default'),(2973,2417,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#FFFAF7\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":774,\"sizes\":[]},\"background_background\":\"classic\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}],\"z_index\":1},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"align\":\"center\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.12)\"}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Price: [custom_query_paramter paramter_type=\'price\']<\\/p>\",\"text_color\":\"#000000C7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"47e7cf3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"35c59a1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"fbc4451\"}],\"shape_divider_top\":\"triangle\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":145,\"sizes\":[]},\"shape_divider_top_negative\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":0,\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"00eb539\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f8703a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2974,2417,'_elementor_page_assets','a:0:{}'),(2976,2418,'_elementor_edit_mode','builder'),(2977,2418,'_elementor_template_type','wp-page'),(2978,2418,'_elementor_version','3.9.0'),(2979,2418,'_wp_page_template','default'),(2980,2418,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#FFFAF7\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}],\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":774,\"sizes\":[]},\"background_background\":\"classic\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}],\"z_index\":1},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"align\":\"center\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.12)\"}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Price: [custom_query_paramter paramter_type=\'price\']<\\/p>\",\"text_color\":\"#000000C7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"47e7cf3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"35c59a1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"fbc4451\"}],\"shape_divider_top\":\"triangle\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":145,\"sizes\":[]},\"shape_divider_top_negative\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":0,\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"00eb539\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f8703a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2981,2418,'_elementor_page_assets','a:0:{}'),(2983,2419,'_wp_attached_file','2023/01/a4-magazine-mockup_125540-620.jpg'),(2984,2419,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1328;s:4:\"file\";s:41:\"2023/01/a4-magazine-mockup_125540-620.jpg\";s:8:\"filesize\";i:611929;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"a4-magazine-mockup_125540-620-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12210;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"a4-magazine-mockup_125540-620-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136358;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"a4-magazine-mockup_125540-620-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6048;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"a4-magazine-mockup_125540-620-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67445;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"a4-magazine-mockup_125540-620-1536x1020.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1020;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:323853;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:41:\"a4-magazine-mockup_125540-620-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18017;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:41:\"a4-magazine-mockup_125540-620-600x398.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40141;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:41:\"a4-magazine-mockup_125540-620-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3629;}}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:{}}}'),(2985,2392,'_thumbnail_id','2419'),(2987,2420,'_elementor_edit_mode','builder'),(2988,2420,'_elementor_template_type','wp-page'),(2989,2420,'_elementor_version','3.9.0'),(2990,2420,'_wp_page_template','elementor_canvas'),(2991,2420,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"abc3894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscription Management Software\",\"align\":\"center\",\"title_color\":\"#000000B5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72cd62d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/plans\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Magazine\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"eCommerce\",\"content_title_tag\":\"h2\",\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/demo-shop\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Membership\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]},\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/membership\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2992,2420,'_elementor_page_assets','a:0:{}'),(2994,2421,'_elementor_edit_mode','builder'),(2995,2421,'_elementor_template_type','wp-page'),(2996,2421,'_elementor_version','3.9.0'),(2997,2421,'_wp_page_template','elementor_canvas'),(2998,2421,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"abc3894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscription Management Software\",\"align\":\"center\",\"title_color\":\"#000000B5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72cd62d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/plans\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Magazine\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"eCommerce\",\"content_title_tag\":\"h2\",\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/demo-shop\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Membership\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]},\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/membership\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2999,2421,'_elementor_page_assets','a:0:{}'),(3001,2422,'_elementor_edit_mode','builder'),(3002,2422,'_elementor_template_type','wp-page'),(3003,2422,'_elementor_version','3.9.0'),(3004,2422,'_wp_page_template','elementor_canvas'),(3005,2422,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"abc3894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscription Management Software\",\"align\":\"center\",\"title_color\":\"#000000B5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72cd62d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/plans\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Magazine\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]},\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/product\\/discounted-partner-member\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"eCommerce\",\"content_title_tag\":\"h2\",\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/demo-shop\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Membership\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]},\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/membership\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3006,2422,'_elementor_page_assets','a:0:{}'),(3009,2423,'_elementor_edit_mode','builder'),(3010,2423,'_elementor_template_type','wp-page'),(3011,2423,'_elementor_version','3.9.0'),(3012,2423,'_wp_page_template','elementor_canvas'); INSERT INTO `wp_postmeta` VALUES (3013,2423,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"abc3894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscription Management Software\",\"align\":\"center\",\"title_color\":\"#000000B5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72cd62d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/plans\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Magazine\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]},\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/product\\/discounted-partner-member\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"eCommerce\",\"content_title_tag\":\"h2\",\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/demo-shop\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Membership\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]},\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/membership\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3014,2423,'_elementor_page_assets','a:0:{}'),(3016,2424,'_elementor_edit_mode','builder'),(3017,2424,'_elementor_template_type','wp-page'),(3018,2424,'_elementor_version','3.9.0'),(3019,2424,'_wp_page_template','elementor_canvas'),(3020,2424,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"abc3894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscription Management Software\",\"align\":\"center\",\"title_color\":\"#000000B5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72cd62d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/plans\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Magazine\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]},\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/product\\/discounted-partner-member\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"eCommerce\",\"content_title_tag\":\"h2\",\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/demo-shop\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Membership\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]},\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/membership\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3021,2424,'_elementor_page_assets','a:0:{}'),(3023,2425,'_elementor_edit_mode','builder'),(3024,2425,'_elementor_template_type','wp-page'),(3025,2425,'_elementor_version','3.9.0'),(3026,2425,'_wp_page_template','elementor_canvas'),(3027,2425,'_elementor_data','[{\"id\":\"a501e0c\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ba6bbcc\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"abac5ca\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_color\":\"#333C2C\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-118\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9e4f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"678aa25\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"b8b09f0\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6a2f216\"}],\"enable_sticky_section\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bee9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"abc3894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscription Management Software\",\"align\":\"center\",\"title_color\":\"#000000B5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72cd62d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"57d719f\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"f07190e\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"cac3fed\"}]},\"elements\":[{\"id\":\"1e340a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\"},\"elements\":[{\"id\":\"14dc599\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"SaaS \",\"content_title_tag\":\"h2\",\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/plans\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"content_title_typography_text_transform\":\"uppercase\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"647de12\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Magazine\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]},\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/product\\/discounted-partner-member\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"d5ebcd4\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"eCommerce\",\"content_title_tag\":\"h2\",\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/demo-shop\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"},{\"id\":\"ee74b9c\",\"elType\":\"widget\",\"settings\":{\"content_title\":\"Membership\",\"content_title_tag\":\"h2\",\"content_btn_text\":\"Click here\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"content_title_typography_typography\":\"custom\",\"content_title_typography_font_family\":\"Roboto\",\"content_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_title_typography_font_weight\":\"600\",\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#FD7B03\",\"btn_bg_color_color_b\":\"#FD7805\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"overlay_hover_color\":\"#FD7805\",\"overlay_blend_mode\":\"multiply\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]},\"content_link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/membership\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"wpr-promo-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3028,2425,'_elementor_page_assets','a:0:{}'),(3031,2426,'_wp_attached_file','2023/01/02.png'),(3032,2426,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2500;s:6:\"height\";i:2500;s:4:\"file\";s:14:\"2023/01/02.png\";s:8:\"filesize\";i:393620;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"02-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43726;}s:5:\"large\";a:5:{s:4:\"file\";s:16:\"02-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:193853;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17447;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:14:\"02-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:138278;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:16:\"02-1536x1536.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:312384;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:16:\"02-2048x2048.png\";s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:432676;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:14:\"02-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43726;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:14:\"02-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:102452;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:14:\"02-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10054;}s:25:\"elementor_custom_1200x355\";a:4:{s:4:\"file\";s:66:\"elementor/thumbs/02-q0gdtipj185ee398y6ihh68nugree5qhmlct8qehge.png\";s:5:\"width\";i:1200;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3039,2428,'_wp_attached_file','2023/01/03.png'),(3040,2428,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:863;s:6:\"height\";i:353;s:4:\"file\";s:14:\"2023/01/03.png\";s:8:\"filesize\";i:135871;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"03-300x123.png\";s:5:\"width\";i:300;s:6:\"height\";i:123;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26638;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"03-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22463;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:14:\"03-768x314.png\";s:5:\"width\";i:768;s:6:\"height\";i:314;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:110527;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:14:\"03-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63467;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:14:\"03-600x245.png\";s:5:\"width\";i:600;s:6:\"height\";i:245;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:74667;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:14:\"03-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12788;}}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:{}}}'),(3045,2431,'_wp_attached_file','2023/01/101.png'),(3046,2431,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:979;s:6:\"height\";i:431;s:4:\"file\";s:15:\"2023/01/101.png\";s:8:\"filesize\";i:162268;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"101-300x132.png\";s:5:\"width\";i:300;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29391;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"101-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29353;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"101-768x338.png\";s:5:\"width\";i:768;s:6:\"height\";i:338;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:114693;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:15:\"101-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:79951;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:15:\"101-600x264.png\";s:5:\"width\";i:600;s:6:\"height\";i:264;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:79274;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:15:\"101-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16402;}}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:{}}}'),(3047,2432,'_elementor_edit_mode','builder'),(3048,2432,'_elementor_template_type','wp-page'),(3049,2432,'_elementor_version','3.9.0'),(3050,2432,'_wp_page_template','default'),(3051,2432,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#FFFAF7\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}],\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":774,\"sizes\":[]},\"background_background\":\"classic\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}],\"z_index\":1},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"align\":\"center\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.12)\"}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Price: [custom_query_paramter paramter_type=\'price\']<\\/p>\",\"text_color\":\"#000000C7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"47e7cf3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"35c59a1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"fbc4451\"}],\"shape_divider_top\":\"triangle\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":145,\"sizes\":[]},\"shape_divider_top_negative\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":0,\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"00eb539\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f8703a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3052,2432,'_elementor_page_assets','a:0:{}'),(3053,2433,'_elementor_edit_mode','builder'),(3054,2433,'_elementor_template_type','wp-page'),(3055,2433,'_elementor_version','3.9.0'),(3056,2433,'_wp_page_template','default'),(3057,2433,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#FFFAF7\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}],\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2164,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/93.png\"},\"image_size\":\"full\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":774,\"sizes\":[]},\"background_background\":\"classic\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}],\"z_index\":1},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"align\":\"center\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.12)\"}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Price: [custom_query_paramter paramter_type=\'price\']<\\/p>\",\"text_color\":\"#000000C7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"47e7cf3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"35c59a1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"fbc4451\"}],\"shape_divider_top\":\"triangle\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":145,\"sizes\":[]},\"shape_divider_top_negative\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":0,\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"00eb539\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f8703a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3058,2433,'_elementor_page_assets','a:0:{}'),(3059,2434,'_elementor_edit_mode','builder'),(3060,2434,'_elementor_template_type','wp-page'),(3061,2434,'_elementor_version','3.9.0'),(3062,2434,'_wp_page_template','default'),(3063,2434,'_elementor_data','[{\"id\":\"11fb06bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"height\":\"min-height\",\"background_color_b\":\"#020D26\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":254,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-108,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_color_b\":\"\"},\"background_color\":\"#FFFAF7\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"3a85009\"}],\"bg_image\":{\"id\":2168,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"71d76c9\",\"repeater_bg_image\":{\"id\":2169,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7b21ad2\",\"repeater_bg_image\":{\"id\":2170,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}}]},\"elements\":[{\"id\":\"4f0cbd3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"f2649b3\"}]},\"elements\":[{\"id\":\"494e6226\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}],\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"48c069a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"51eacd1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2431,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/101.png\",\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}],\"image_custom_dimension\":{\"width\":\"1200\",\"height\":\"355\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d75cad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2539bac7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":774,\"sizes\":[]},\"background_background\":\"classic\",\"css_classes\":\"thank-you-description\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"388621f\"}],\"bg_image\":{\"id\":2174,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-15.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"0a7d333\",\"repeater_bg_image\":{\"id\":2175,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-16.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"d64b611\",\"repeater_bg_image\":{\"id\":2176,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-17.png\"}}],\"z_index\":1},\"elements\":[{\"id\":\"1ebfa1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"23d37b2\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"align\":\"center\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":4,\"color\":\"rgba(0, 0, 0, 0.12)\"}},\"elements\":[{\"id\":\"747c6e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Appreciate Your Interest in Our Product\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d3f52e3\"}],\"title_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2c90bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Name: [custom_query_paramter paramter_type=\'name\']<\\/p><p>Email: [custom_query_paramter paramter_type=\'email\']<\\/p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']<\\/p><p>Price: [custom_query_paramter paramter_type=\'price\']<\\/p>\",\"text_color\":\"#000000C7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a8f376\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"e13452d\"}],\"bg_image\":{\"id\":2171,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"c2e44ca\",\"repeater_bg_image\":{\"id\":2172,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"513b62f\",\"repeater_bg_image\":{\"id\":2173,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"}}]},\"elements\":[{\"id\":\"203fd90e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"eael_cl_logics\":[{\"_id\":\"5239adb\"}]},\"elements\":[{\"id\":\"3a5351f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"5092f37\"}],\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52417906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><em>Stay Connected with SubscriptionFlow!<\\/em><\\/strong><\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"d84e42b\"}],\"text_color\":\"#F47B20\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8a3e9a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"47e7cf3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"35c59a1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"fbc4451\"}],\"shape_divider_top\":\"triangle\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":145,\"sizes\":[]},\"shape_divider_top_negative\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":0,\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"00eb539\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f8703a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3064,2434,'_elementor_page_assets','a:0:{}'),(3066,5,'_elementor_css','a:6:{s:4:\"time\";i:1674471680;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:1;s:11:\"Roboto Slab\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3067,18,'_elementor_css','a:6:{s:4:\"time\";i:1674471681;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3068,337,'_elementor_css','a:6:{s:4:\"time\";i:1674471681;s:5:\"fonts\";a:1:{i:0;s:7:\"Poppins\";}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3069,340,'_elementor_css','a:6:{s:4:\"time\";i:1674471681;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3070,130,'_elementor_css','a:6:{s:4:\"time\";i:1674471750;s:5:\"fonts\";a:2:{i:0;s:7:\"Poppins\";i:3;s:4:\"Lato\";}s:5:\"icons\";a:2:{i:0;s:5:\"solid\";i:1;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3071,2318,'_elementor_css','a:6:{s:4:\"time\";i:1674471768;s:5:\"fonts\";a:4:{i:0;s:6:\"Roboto\";i:1;s:4:\"Lato\";i:2;s:7:\"Poppins\";i:4;s:9:\"Open Sans\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:5;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3072,2108,'_elementor_css','a:6:{s:4:\"time\";i:1674471980;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;s:0:\"\";}'),(3075,2162,'_elementor_css','a:6:{s:4:\"time\";i:1674488993;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3076,351,'_elementor_css','a:6:{s:4:\"time\";i:1674536399;s:5:\"fonts\";a:1:{i:0;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:\"\";}'),(3077,1678,'_elementor_css','a:6:{s:4:\"time\";i:1674713259;s:5:\"fonts\";a:1:{i:0;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:\"\";}'),(3078,2289,'_elementor_css','a:6:{s:4:\"time\";i:1675163789;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3086,2441,'_wp_page_template','default'),(3087,2441,'_elementor_edit_mode','builder'),(3088,2441,'_elementor_template_type','wp-page'),(3089,2441,'_elementor_version','3.9.0'),(3090,2441,'_elementor_data','[{\"id\":\"b3cf456\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"aba6f05\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6075acf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"89a2308\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e810bbe\",\"elType\":\"widget\",\"settings\":{\"query_selection\":\"manual\",\"query_manual_products\":[\"2099\",\"409\"],\"query_not_found_text\":\"No Posts Found!\",\"layout_filters\":\"\",\"grid_linked_products_heading\":\"You may be interested in...\",\"grid_elements\":[{\"_id\":\"2d3a373\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"bb864c8\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\",\"grid_media_border_color\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\",\"product_price_color\":\"#333333\",\"product_price_typography_typography\":\"custom\",\"product_price_typography_font_family\":\"Roboto\",\"product_price_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"product_price_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(3091,2441,'_elementor_page_assets','a:0:{}'),(3092,2442,'_wp_page_template','default'),(3093,2442,'_elementor_edit_mode','builder'),(3094,2442,'_elementor_template_type','wp-page'),(3095,2442,'_elementor_version','3.9.0'),(3096,2442,'_elementor_data','[{\"id\":\"b3cf456\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"aba6f05\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6075acf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"89a2308\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e810bbe\",\"elType\":\"widget\",\"settings\":{\"query_selection\":\"manual\",\"query_manual_products\":[\"2099\",\"409\"],\"query_not_found_text\":\"No Posts Found!\",\"layout_filters\":\"\",\"grid_linked_products_heading\":\"You may be interested in...\",\"grid_elements\":[{\"_id\":\"2d3a373\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"bb864c8\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\",\"grid_media_border_color\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\",\"product_price_color\":\"#333333\",\"product_price_typography_typography\":\"custom\",\"product_price_typography_font_family\":\"Roboto\",\"product_price_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"product_price_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(3097,2442,'_elementor_page_assets','a:0:{}'),(3098,2443,'_wp_page_template','default'),(3099,2443,'_elementor_edit_mode','builder'),(3100,2443,'_elementor_template_type','wp-page'),(3101,2443,'_elementor_version','3.9.0'),(3102,2443,'_elementor_data','[{\"id\":\"b3cf456\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"aba6f05\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6075acf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"89a2308\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e810bbe\",\"elType\":\"widget\",\"settings\":{\"query_selection\":\"manual\",\"query_manual_products\":[\"2099\",\"409\"],\"query_not_found_text\":\"No Posts Found!\",\"layout_filters\":\"\",\"grid_linked_products_heading\":\"You may be interested in...\",\"grid_elements\":[{\"_id\":\"2d3a373\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"bb864c8\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\",\"grid_media_border_color\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\",\"product_price_color\":\"#333333\",\"product_price_typography_typography\":\"custom\",\"product_price_typography_font_family\":\"Roboto\",\"product_price_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"product_price_typography_font_weight\":\"600\",\"layout_gutter_hr\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"layout_animation\":\"zoom\"},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(3103,2443,'_elementor_page_assets','a:0:{}'),(3105,2444,'_wp_attached_file','2022/12/7_ca8724d4-ae51-4375-b0fc-8388b123737d_1024x1024-1.webp'),(3106,2444,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:683;s:6:\"height\";i:1024;s:4:\"file\";s:63:\"2022/12/7_ca8724d4-ae51-4375-b0fc-8388b123737d_1024x1024-1.webp\";s:8:\"filesize\";i:51898;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:63:\"7_ca8724d4-ae51-4375-b0fc-8388b123737d_1024x1024-1-200x300.webp\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5092;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:63:\"7_ca8724d4-ae51-4375-b0fc-8388b123737d_1024x1024-1-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:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:63:\"7_ca8724d4-ae51-4375-b0fc-8388b123737d_1024x1024-1-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9382;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:63:\"7_ca8724d4-ae51-4375-b0fc-8388b123737d_1024x1024-1-600x900.webp\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:29788;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:63:\"7_ca8724d4-ae51-4375-b0fc-8388b123737d_1024x1024-1-100x100.webp\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:1900;}}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:{}}}'),(3107,2445,'_wp_attached_file','2022/12/ezgif.com-gif-maker.jpg'),(3108,2445,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:578;s:6:\"height\";i:775;s:4:\"file\";s:31:\"2022/12/ezgif.com-gif-maker.jpg\";s:8:\"filesize\";i:73501;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"ezgif.com-gif-maker-224x300.jpg\";s:5:\"width\";i:224;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11003;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"ezgif.com-gif-maker-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5355;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"ezgif.com-gif-maker-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14894;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"ezgif.com-gif-maker-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3358;}}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:\"1\";s:8:\"keywords\";a:0:{}}}'),(3109,2446,'_wp_attached_file','2022/12/ezgif.png'),(3110,2446,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:578;s:6:\"height\";i:775;s:4:\"file\";s:17:\"2022/12/ezgif.png\";s:8:\"filesize\";i:440520;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"ezgif-224x300.png\";s:5:\"width\";i:224;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:79284;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"ezgif-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32859;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:17:\"ezgif-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:119686;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:17:\"ezgif-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15569;}}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:{}}}'),(3111,2447,'_wp_page_template','default'),(3112,2447,'_elementor_edit_mode','builder'),(3113,2447,'_elementor_template_type','wp-page'),(3114,2447,'_elementor_version','3.10.1'),(3115,2447,'_elementor_data','[{\"id\":\"b3cf456\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"aba6f05\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6075acf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"89a2308\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e810bbe\",\"elType\":\"widget\",\"settings\":{\"query_selection\":\"manual\",\"query_manual_products\":[\"2099\",\"409\"],\"query_not_found_text\":\"No Posts Found!\",\"layout_filters\":\"\",\"grid_linked_products_heading\":\"You may be interested in...\",\"grid_elements\":[{\"_id\":\"2d3a373\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"bb864c8\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\",\"grid_media_border_color\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\",\"product_price_color\":\"#333333\",\"product_price_typography_typography\":\"custom\",\"product_price_typography_font_family\":\"Roboto\",\"product_price_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"product_price_typography_font_weight\":\"600\",\"layout_gutter_hr\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"layout_animation\":\"zoom\"},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(3116,2447,'_elementor_page_assets','a:0:{}'),(3117,2447,'_elementor_css','a:6:{s:4:\"time\";i:1675675965;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3118,2448,'_wp_page_template','default'),(3119,2448,'_elementor_edit_mode','builder'),(3120,2448,'_elementor_template_type','wp-page'),(3121,2448,'_elementor_version','3.10.1'),(3122,2448,'_elementor_data','[{\"id\":\"b3cf456\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"aba6f05\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6075acf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"89a2308\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e810bbe\",\"elType\":\"widget\",\"settings\":{\"query_selection\":\"manual\",\"query_manual_products\":[\"2099\",\"409\"],\"query_not_found_text\":\"No Posts Found!\",\"layout_filters\":\"\",\"grid_linked_products_heading\":\"You may be interested in...\",\"grid_elements\":[{\"_id\":\"2d3a373\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"bb864c8\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\",\"grid_media_border_color\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\",\"product_price_color\":\"#333333\",\"product_price_typography_typography\":\"custom\",\"product_price_typography_font_family\":\"Roboto\",\"product_price_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"product_price_typography_font_weight\":\"600\",\"layout_gutter_hr\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"layout_animation\":\"zoom\"},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(3123,2448,'_elementor_page_assets','a:0:{}'),(3124,2448,'_elementor_css','a:6:{s:4:\"time\";i:1675675965;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3125,2449,'_wp_page_template','default'),(3126,2449,'_elementor_edit_mode','builder'),(3127,2449,'_elementor_template_type','wp-page'),(3128,2449,'_elementor_version','3.10.1'),(3129,2449,'_elementor_data','[{\"id\":\"b3cf456\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"aba6f05\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6075acf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"89a2308\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e810bbe\",\"elType\":\"widget\",\"settings\":{\"query_selection\":\"manual\",\"query_manual_products\":[\"2099\",\"409\"],\"query_not_found_text\":\"No Posts Found!\",\"layout_filters\":\"\",\"grid_linked_products_heading\":\"You may be interested in...\",\"grid_elements\":[{\"_id\":\"2d3a373\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"bb864c8\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\",\"grid_media_border_color\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\",\"product_price_color\":\"#333333\",\"product_price_typography_typography\":\"custom\",\"product_price_typography_font_family\":\"Roboto\",\"product_price_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"product_price_typography_font_weight\":\"600\",\"layout_gutter_hr\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"layout_animation\":\"zoom\",\"grid_item_bg_color\":\"#DDD4D40A\"},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(3130,2449,'_elementor_page_assets','a:0:{}'),(3131,2449,'_elementor_css','a:6:{s:4:\"time\";i:1675675965;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3133,2450,'_wp_page_template','default'),(3134,2450,'_elementor_edit_mode','builder'),(3135,2450,'_elementor_template_type','wp-page'),(3136,2450,'_elementor_version','3.10.1'),(3137,2450,'_elementor_data','[{\"id\":\"b3cf456\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"aba6f05\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6075acf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"89a2308\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e810bbe\",\"elType\":\"widget\",\"settings\":{\"query_selection\":\"manual\",\"query_manual_products\":[\"2099\",\"409\"],\"query_not_found_text\":\"No Posts Found!\",\"layout_filters\":\"\",\"grid_linked_products_heading\":\"You may be interested in...\",\"grid_elements\":[{\"_id\":\"2d3a373\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"bb864c8\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\",\"grid_media_border_color\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\",\"product_price_color\":\"#333333\",\"product_price_typography_typography\":\"custom\",\"product_price_typography_font_family\":\"Roboto\",\"product_price_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"product_price_typography_font_weight\":\"600\",\"layout_gutter_hr\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"layout_animation\":\"zoom\",\"grid_item_bg_color\":\"#DDD4D40A\"},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(3138,2450,'_elementor_page_assets','a:0:{}'),(3139,2450,'_elementor_css','a:6:{s:4:\"time\";i:1675677221;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3140,2451,'_wp_page_template','default'),(3141,2451,'_elementor_edit_mode','builder'),(3142,2451,'_elementor_template_type','wp-page'),(3143,2451,'_elementor_version','3.10.1'),(3144,2451,'_elementor_data','[{\"id\":\"b3cf456\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"aba6f05\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6075acf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"89a2308\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e810bbe\",\"elType\":\"widget\",\"settings\":{\"query_selection\":\"manual\",\"query_manual_products\":[\"2099\",\"409\"],\"query_not_found_text\":\"No Posts Found!\",\"layout_filters\":\"\",\"grid_linked_products_heading\":\"You may be interested in...\",\"grid_elements\":[{\"_id\":\"2d3a373\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"bb864c8\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\",\"grid_media_border_color\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\",\"product_price_color\":\"#333333\",\"product_price_typography_typography\":\"custom\",\"product_price_typography_font_family\":\"Roboto\",\"product_price_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"product_price_typography_font_weight\":\"600\",\"layout_gutter_hr\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"layout_animation\":\"zoom\",\"grid_item_bg_color\":\"#DDD4D40A\"},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(3145,2451,'_elementor_page_assets','a:0:{}'),(3146,2451,'_elementor_css','a:6:{s:4:\"time\";i:1675677221;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3147,2452,'_wp_page_template','default'),(3148,2452,'_elementor_edit_mode','builder'),(3149,2452,'_elementor_template_type','wp-page'),(3150,2452,'_elementor_version','3.10.1'),(3151,2452,'_elementor_data','[{\"id\":\"b3cf456\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"aba6f05\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"6075acf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"89a2308\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e810bbe\",\"elType\":\"widget\",\"settings\":{\"query_selection\":\"manual\",\"query_manual_products\":[\"2099\",\"409\"],\"query_not_found_text\":\"No Posts Found!\",\"layout_filters\":\"\",\"grid_linked_products_heading\":\"You may be interested in...\",\"grid_elements\":[{\"_id\":\"2d3a373\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"},{\"element_select\":\"price\",\"_id\":\"bb864c8\",\"element_tax_sep\":\", \",\"element_addcart_simple_txt\":\"Add to Cart\",\"element_addcart_grouped_txt\":\"Select Options\",\"element_addcart_variable_txt\":\"View Products\"}],\"filters_all_text\":\"All\",\"pagination_older_text\":\"Older Posts\",\"pagination_newer_text\":\"Newer Posts\",\"pagination_prev_text\":\"Previous Page\",\"pagination_next_text\":\"Next Page\",\"pagination_first_text\":\"First Page\",\"pagination_last_text\":\"Last Page\",\"pagination_load_more_text\":\"Load More\",\"pagination_finish_text\":\"End of Content.\",\"grid_media_border_color\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"400\",\"product_price_color\":\"#333333\",\"product_price_typography_typography\":\"custom\",\"product_price_typography_font_family\":\"Roboto\",\"product_price_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"product_price_typography_font_weight\":\"600\",\"layout_gutter_hr\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"layout_animation\":\"zoom\",\"grid_item_bg_color\":\"#DDD4D40A\"},\"elements\":[],\"widgetType\":\"wpr-woo-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(3152,2452,'_elementor_page_assets','a:0:{}'),(3153,2452,'_elementor_css','a:6:{s:4:\"time\";i:1675677221;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3154,2393,'_elementor_css','a:6:{s:4:\"time\";i:1675677296;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3160,2454,'_elementor_edit_mode','builder'),(3161,2454,'_elementor_template_type','popup'),(3162,2454,'_elementor_version','3.10.1'),(3163,2454,'_elementor_pro_version','3.7.7'),(3164,2454,'_edit_lock','1675681543:1'),(3165,2455,'_elementor_edit_mode','builder'),(3166,2455,'_elementor_template_type','popup'),(3167,2455,'_elementor_version','3.10.1'),(3168,2455,'_elementor_pro_version','3.7.7'),(3169,2454,'_wp_page_template','default'),(3170,2454,'_elementor_data','[{\"id\":\"ddfb29d\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ef8e47d\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"4b4082f\"}]},\"elements\":[{\"id\":\"563857e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49a6297\",\"elType\":\"widget\",\"settings\":{\"html\":\"<iframe src=\\\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/47669555-7ea2-4125-bda7-0a6e6c0919d8\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\\\" height=\\\"700\\\" with=\\\"800\\\"><\\/iframe>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false}]'),(3171,2456,'_elementor_edit_mode','builder'),(3172,2456,'_elementor_template_type','popup'),(3173,2456,'_elementor_version','3.10.1'),(3174,2456,'_elementor_pro_version','3.7.7'),(3175,2456,'_wp_page_template','default'),(3176,2456,'_elementor_data','[{\"id\":\"ddfb29d\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"ef8e47d\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"4b4082f\"}]},\"elements\":[{\"id\":\"563857e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49a6297\",\"elType\":\"widget\",\"settings\":{\"html\":\"<iframe src=\\\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/47669555-7ea2-4125-bda7-0a6e6c0919d8\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\\\" height=\\\"700\\\" with=\\\"800\\\"><\\/iframe>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false}]'),(3177,2454,'_elementor_page_assets','a:0:{}'),(3178,2454,'_elementor_popup_display_settings','a:2:{s:8:\"triggers\";a:1:{s:5:\"click\";s:3:\"yes\";}s:6:\"timing\";a:0:{}}'),(3179,2457,'_elementor_edit_mode','builder'),(3180,2457,'_elementor_template_type','wp-page'),(3181,2457,'_elementor_version','3.9.0'),(3182,2457,'_wp_page_template','default'),(3183,2457,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/47669555-7ea2-4125-bda7-0a6e6c0919d8\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3184,2457,'_elementor_page_assets','a:0:{}'),(3185,2457,'_elementor_css','a:6:{s:4:\"time\";i:1674472718;s:5:\"fonts\";a:4:{i:0;s:6:\"Roboto\";i:1;s:4:\"Lato\";i:2;s:7:\"Poppins\";i:6;s:9:\"Open Sans\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:5;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3186,2458,'_elementor_edit_mode','builder'),(3187,2458,'_elementor_template_type','wp-page'),(3188,2458,'_elementor_version','3.9.0'),(3189,2458,'_wp_page_template','default'),(3190,2458,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/47669555-7ea2-4125-bda7-0a6e6c0919d8\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3191,2458,'_elementor_page_assets','a:0:{}'),(3192,2458,'_elementor_css','a:6:{s:4:\"time\";i:1674472718;s:5:\"fonts\";a:4:{i:0;s:6:\"Roboto\";i:1;s:4:\"Lato\";i:2;s:7:\"Poppins\";i:6;s:9:\"Open Sans\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:5;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3193,2459,'_elementor_edit_mode','builder'),(3194,2459,'_elementor_template_type','wp-page'),(3195,2459,'_elementor_version','3.9.0'),(3196,2459,'_wp_page_template','default'),(3197,2459,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"#2454\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3198,2459,'_elementor_page_assets','a:0:{}'),(3199,2459,'_elementor_css','a:6:{s:4:\"time\";i:1674472718;s:5:\"fonts\";a:4:{i:0;s:6:\"Roboto\";i:1;s:4:\"Lato\";i:2;s:7:\"Poppins\";i:6;s:9:\"Open Sans\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:5;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3200,2131,'_elementor_pro_version','3.7.7'),(3202,2460,'_elementor_edit_mode','builder'),(3203,2460,'_elementor_template_type','wp-page'),(3204,2460,'_elementor_version','3.10.1'),(3205,2460,'_wp_page_template','default'),(3206,2460,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"#2454\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3207,2460,'_elementor_page_assets','a:0:{}'),(3208,2460,'_elementor_pro_version','3.7.7'),(3209,2460,'_elementor_css','a:6:{s:4:\"time\";i:1675678722;s:5:\"fonts\";a:4:{i:0;s:6:\"Roboto\";i:1;s:4:\"Lato\";i:2;s:7:\"Poppins\";i:6;s:9:\"Open Sans\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:5;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3210,2461,'_elementor_edit_mode','builder'),(3211,2461,'_elementor_template_type','wp-page'),(3212,2461,'_elementor_version','3.10.1'),(3213,2461,'_wp_page_template','default'),(3214,2461,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"#2454\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3215,2461,'_elementor_page_assets','a:0:{}'),(3216,2461,'_elementor_pro_version','3.7.7'),(3217,2461,'_elementor_css','a:6:{s:4:\"time\";i:1675678722;s:5:\"fonts\";a:4:{i:0;s:6:\"Roboto\";i:1;s:4:\"Lato\";i:2;s:7:\"Poppins\";i:6;s:9:\"Open Sans\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:5;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3218,2462,'_elementor_edit_mode','builder'),(3219,2462,'_elementor_template_type','wp-page'),(3220,2462,'_elementor_version','3.10.1'),(3221,2462,'_wp_page_template','default'),(3222,2462,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"#2454\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3223,2462,'_elementor_page_assets','a:0:{}'),(3224,2462,'_elementor_pro_version','3.7.7'),(3225,2462,'_elementor_css','a:6:{s:4:\"time\";i:1675678722;s:5:\"fonts\";a:4:{i:0;s:6:\"Roboto\";i:1;s:4:\"Lato\";i:2;s:7:\"Poppins\";i:6;s:9:\"Open Sans\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:5;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3227,2463,'_elementor_edit_mode','builder'),(3228,2463,'_elementor_template_type','wp-page'),(3229,2463,'_elementor_version','3.10.1'),(3230,2463,'_wp_page_template','default'),(3231,2463,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"#2454\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3232,2463,'_elementor_page_assets','a:0:{}'),(3233,2463,'_elementor_pro_version','3.7.7'),(3234,2463,'_elementor_css','a:6:{s:4:\"time\";i:1675678741;s:5:\"fonts\";a:4:{i:0;s:6:\"Roboto\";i:1;s:4:\"Lato\";i:2;s:7:\"Poppins\";i:6;s:9:\"Open Sans\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:5;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3235,2464,'_elementor_edit_mode','builder'),(3236,2464,'_elementor_template_type','wp-page'),(3237,2464,'_elementor_version','3.10.1'),(3238,2464,'_wp_page_template','default'),(3239,2464,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"#2454\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3240,2464,'_elementor_page_assets','a:0:{}'),(3241,2464,'_elementor_pro_version','3.7.7'),(3242,2464,'_elementor_css','a:6:{s:4:\"time\";i:1675678741;s:5:\"fonts\";a:4:{i:0;s:6:\"Roboto\";i:1;s:4:\"Lato\";i:2;s:7:\"Poppins\";i:6;s:9:\"Open Sans\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:5;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3243,2465,'_elementor_edit_mode','builder'),(3244,2465,'_elementor_template_type','wp-page'),(3245,2465,'_elementor_version','3.10.1'),(3246,2465,'_wp_page_template','default'),(3247,2465,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"#2454\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"0a93e85\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"ffeeb1d\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%222454%22%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3248,2465,'_elementor_page_assets','a:0:{}'),(3249,2465,'_elementor_pro_version','3.7.7'),(3250,2465,'_elementor_css','a:6:{s:4:\"time\";i:1675678741;s:5:\"fonts\";a:4:{i:0;s:6:\"Roboto\";i:1;s:4:\"Lato\";i:2;s:7:\"Poppins\";i:6;s:9:\"Open Sans\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:5;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3252,2454,'_elementor_css','a:6:{s:4:\"time\";i:1675678905;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;s:0:\"\";}'),(3261,2467,'_elementor_edit_mode','builder'),(3262,2467,'_elementor_template_type','wp-page'),(3263,2467,'_elementor_version','3.10.1'),(3264,2467,'_wp_page_template','default'),(3265,2467,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"#2454\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"0a93e85\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"ffeeb1d\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%222454%22%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3266,2467,'_elementor_page_assets','a:0:{}'),(3267,2467,'_elementor_pro_version','3.7.7'),(3268,2468,'_elementor_edit_mode','builder'),(3269,2468,'_elementor_template_type','wp-page'),(3270,2468,'_elementor_version','3.10.1'),(3271,2468,'_wp_page_template','default'),(3272,2468,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"#2454\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"0a93e85\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"ffeeb1d\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%222454%22%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3273,2468,'_elementor_page_assets','a:0:{}'),(3274,2468,'_elementor_pro_version','3.7.7'),(3275,2469,'_elementor_edit_mode','builder'),(3276,2469,'_elementor_template_type','wp-page'),(3277,2469,'_elementor_version','3.10.1'),(3278,2469,'_wp_page_template','default'),(3279,2469,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"#2454\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"0a93e85\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#61CE70F2\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"ffeeb1d\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%222454%22%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3280,2469,'_elementor_page_assets','a:0:{}'),(3281,2469,'_elementor_pro_version','3.7.7'),(3283,2470,'_elementor_edit_mode','builder'),(3284,2470,'_elementor_template_type','wp-page'),(3285,2470,'_elementor_version','3.10.1'),(3286,2470,'_wp_page_template','default'),(3287,2470,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"#2454\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"0a93e85\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#61CE70F2\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"ffeeb1d\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%222454%22%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3288,2470,'_elementor_page_assets','a:0:{}'),(3289,2470,'_elementor_pro_version','3.7.7'),(3290,2470,'_elementor_css','a:6:{s:4:\"time\";i:1675679172;s:5:\"fonts\";a:4:{i:0;s:6:\"Roboto\";i:1;s:4:\"Lato\";i:2;s:7:\"Poppins\";i:6;s:9:\"Open Sans\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:5;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:1:{i:0;s:7:\"0a93e85\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3291,2471,'_elementor_edit_mode','builder'),(3292,2471,'_elementor_template_type','wp-page'),(3293,2471,'_elementor_version','3.10.1'),(3294,2471,'_wp_page_template','default'),(3295,2471,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"#2454\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"0a93e85\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#61CE70F2\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"ffeeb1d\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%222454%22%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3296,2471,'_elementor_page_assets','a:0:{}'),(3297,2471,'_elementor_pro_version','3.7.7'),(3298,2471,'_elementor_css','a:6:{s:4:\"time\";i:1675679172;s:5:\"fonts\";a:4:{i:0;s:6:\"Roboto\";i:1;s:4:\"Lato\";i:2;s:7:\"Poppins\";i:6;s:9:\"Open Sans\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:5;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:1:{i:0;s:7:\"0a93e85\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3299,2472,'_elementor_edit_mode','builder'),(3300,2472,'_elementor_template_type','wp-page'),(3301,2472,'_elementor_version','3.10.1'),(3302,2472,'_wp_page_template','default'),(3303,2472,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"#2454\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"0a93e85\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#61CE70F2\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"ffeeb1d\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%222454%22%7D\\\"]\"},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3304,2472,'_elementor_page_assets','a:0:{}'),(3305,2472,'_elementor_pro_version','3.7.7'),(3306,2472,'_elementor_css','a:6:{s:4:\"time\";i:1675679172;s:5:\"fonts\";a:4:{i:0;s:6:\"Roboto\";i:1;s:4:\"Lato\";i:2;s:7:\"Poppins\";i:6;s:9:\"Open Sans\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:5;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:1:{i:0;s:7:\"0a93e85\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3308,2473,'_elementor_edit_mode','builder'),(3309,2473,'_elementor_template_type','wp-page'),(3310,2473,'_elementor_version','3.10.1'),(3311,2473,'_wp_page_template','default'),(3312,2473,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"#2454\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"0a93e85\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#61CE70F2\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"ffeeb1d\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%222454%22%7D\\\"]\"},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3313,2473,'_elementor_page_assets','a:0:{}'),(3314,2473,'_elementor_pro_version','3.7.7'),(3315,2473,'_elementor_css','a:6:{s:4:\"time\";i:1675679196;s:5:\"fonts\";a:4:{i:0;s:6:\"Roboto\";i:1;s:4:\"Lato\";i:2;s:7:\"Poppins\";i:6;s:9:\"Open Sans\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:5;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:1:{i:0;s:7:\"0a93e85\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3316,2474,'_elementor_edit_mode','builder'),(3317,2474,'_elementor_template_type','wp-page'),(3318,2474,'_elementor_version','3.10.1'),(3319,2474,'_wp_page_template','default'),(3320,2474,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"#2454\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"0a93e85\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#61CE70F2\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"ffeeb1d\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%222454%22%7D\\\"]\"},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3321,2474,'_elementor_page_assets','a:0:{}'),(3322,2474,'_elementor_pro_version','3.7.7'),(3323,2474,'_elementor_css','a:6:{s:4:\"time\";i:1675679196;s:5:\"fonts\";a:4:{i:0;s:6:\"Roboto\";i:1;s:4:\"Lato\";i:2;s:7:\"Poppins\";i:6;s:9:\"Open Sans\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:5;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:1:{i:0;s:7:\"0a93e85\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3324,2475,'_elementor_edit_mode','builder'),(3325,2475,'_elementor_template_type','wp-page'),(3326,2475,'_elementor_version','3.10.1'),(3327,2475,'_wp_page_template','default'),(3328,2475,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"#2454\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"0a93e85\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#605BE5\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"ffeeb1d\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%222454%22%7D\\\"]\"},\"size\":\"md\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3329,2475,'_elementor_page_assets','a:0:{}'),(3330,2475,'_elementor_pro_version','3.7.7'),(3331,2475,'_elementor_css','a:6:{s:4:\"time\";i:1675679196;s:5:\"fonts\";a:4:{i:0;s:6:\"Roboto\";i:1;s:4:\"Lato\";i:2;s:7:\"Poppins\";i:6;s:9:\"Open Sans\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:5;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:1:{i:0;s:7:\"0a93e85\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3332,2476,'_elementor_edit_mode','builder'),(3333,2476,'_elementor_template_type','wp-page'),(3334,2476,'_elementor_version','3.10.1'),(3335,2476,'_wp_page_template','default'),(3336,2476,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"#2454\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"0a93e85\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#605BE5\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"ffeeb1d\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%222454%22%7D\\\"]\"},\"size\":\"md\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3337,2476,'_elementor_page_assets','a:0:{}'),(3338,2476,'_elementor_pro_version','3.7.7'),(3339,2477,'_elementor_edit_mode','builder'),(3340,2477,'_elementor_template_type','wp-page'),(3341,2477,'_elementor_version','3.10.1'),(3342,2477,'_wp_page_template','default'),(3343,2477,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"#2454\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"0a93e85\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#605BE5\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"ffeeb1d\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%222454%22%7D\\\"]\"},\"size\":\"md\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3344,2477,'_elementor_page_assets','a:0:{}'),(3345,2477,'_elementor_pro_version','3.7.7'),(3346,2478,'_elementor_edit_mode','builder'),(3347,2478,'_elementor_template_type','wp-page'),(3348,2478,'_elementor_version','3.10.1'),(3349,2478,'_wp_page_template','default'),(3350,2478,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"#2454\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"0a93e85\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#605BE5\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"ffeeb1d\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%222454%22%7D\\\"]\"},\"size\":\"md\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3351,2478,'_elementor_page_assets','a:0:{}'),(3352,2478,'_elementor_pro_version','3.7.7'),(3354,2479,'_elementor_edit_mode','builder'),(3355,2479,'_elementor_template_type','wp-page'),(3356,2479,'_elementor_version','3.10.1'),(3357,2479,'_wp_page_template','default'),(3358,2479,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"#2454\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"0a93e85\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#605BE5\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"ffeeb1d\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%222454%22%7D\\\"]\"},\"size\":\"md\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3359,2479,'_elementor_page_assets','a:0:{}'),(3360,2479,'_elementor_pro_version','3.7.7'),(3361,2479,'_elementor_css','a:6:{s:4:\"time\";i:1675679506;s:5:\"fonts\";a:4:{i:0;s:6:\"Roboto\";i:1;s:4:\"Lato\";i:2;s:7:\"Poppins\";i:6;s:9:\"Open Sans\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:5;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:1:{i:0;s:7:\"0a93e85\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3362,2480,'_elementor_edit_mode','builder'),(3363,2480,'_elementor_template_type','wp-page'),(3364,2480,'_elementor_version','3.10.1'),(3365,2480,'_wp_page_template','default'),(3366,2480,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"#2454\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"0a93e85\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"background_color\":\"#605BE5\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"ffeeb1d\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%222454%22%7D\\\"]\"},\"size\":\"md\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3367,2480,'_elementor_page_assets','a:0:{}'),(3368,2480,'_elementor_pro_version','3.7.7'),(3369,2480,'_elementor_css','a:6:{s:4:\"time\";i:1675679506;s:5:\"fonts\";a:4:{i:0;s:6:\"Roboto\";i:1;s:4:\"Lato\";i:2;s:7:\"Poppins\";i:6;s:9:\"Open Sans\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:5;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:1:{i:0;s:7:\"0a93e85\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3370,2481,'_elementor_edit_mode','builder'),(3371,2481,'_elementor_template_type','wp-page'),(3372,2481,'_elementor_version','3.10.1'),(3373,2481,'_wp_page_template','default'),(3374,2481,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"#2454\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"0a93e85\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy Now\",\"background_color\":\"#605BE5\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"ffeeb1d\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%222454%22%7D\\\"]\"},\"align\":\"center\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"100\",\"bottom\":\"15\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3375,2481,'_elementor_page_assets','a:0:{}'),(3376,2481,'_elementor_pro_version','3.7.7'),(3377,2481,'_elementor_css','a:6:{s:4:\"time\";i:1675679506;s:5:\"fonts\";a:4:{i:0;s:6:\"Roboto\";i:1;s:4:\"Lato\";i:2;s:7:\"Poppins\";i:6;s:9:\"Open Sans\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:5;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:1:{i:0;s:7:\"0a93e85\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3378,2482,'_elementor_edit_mode','builder'),(3379,2482,'_elementor_template_type','wp-page'),(3380,2482,'_elementor_version','3.10.1'),(3381,2482,'_wp_page_template','default'),(3382,2482,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"#2454\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"0a93e85\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy Now\",\"background_color\":\"#605BE5\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"ffeeb1d\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%222454%22%7D\\\"]\"},\"align\":\"center\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"100\",\"bottom\":\"15\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3383,2482,'_elementor_page_assets','a:0:{}'),(3384,2482,'_elementor_pro_version','3.7.7'),(3385,2483,'_elementor_edit_mode','builder'),(3386,2483,'_elementor_template_type','wp-page'),(3387,2483,'_elementor_version','3.10.1'),(3388,2483,'_wp_page_template','default'); INSERT INTO `wp_postmeta` VALUES (3389,2483,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"#2454\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"0a93e85\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy Now\",\"background_color\":\"#605BE5\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"ffeeb1d\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%222454%22%7D\\\"]\"},\"align\":\"center\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"100\",\"bottom\":\"15\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3390,2483,'_elementor_page_assets','a:0:{}'),(3391,2483,'_elementor_pro_version','3.7.7'),(3392,2484,'_elementor_edit_mode','builder'),(3393,2484,'_elementor_template_type','wp-page'),(3394,2484,'_elementor_version','3.10.1'),(3395,2484,'_wp_page_template','default'),(3396,2484,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"#2454\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"0a93e85\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy Now\",\"background_color\":\"#605BE5\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"ffeeb1d\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%222454%22%7D\\\"]\"},\"align\":\"center\",\"size\":\"md\",\"hover_animation\":\"grow\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"100\",\"bottom\":\"15\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3397,2484,'_elementor_page_assets','a:0:{}'),(3398,2484,'_elementor_pro_version','3.7.7'),(3400,2485,'_elementor_edit_mode','builder'),(3401,2485,'_elementor_template_type','wp-page'),(3402,2485,'_elementor_version','3.10.1'),(3403,2485,'_wp_page_template','default'),(3404,2485,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"#2454\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"0a93e85\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy Now\",\"background_color\":\"#605BE5\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"ffeeb1d\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%222454%22%7D\\\"]\"},\"align\":\"center\",\"size\":\"md\",\"hover_animation\":\"grow\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"100\",\"bottom\":\"15\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3405,2485,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3406,2485,'_elementor_pro_version','3.7.7'),(3407,2485,'_elementor_css','a:6:{s:4:\"time\";i:1675679651;s:5:\"fonts\";a:4:{i:0;s:6:\"Roboto\";i:1;s:4:\"Lato\";i:2;s:7:\"Poppins\";i:6;s:9:\"Open Sans\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:5;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:1:{i:0;s:7:\"0a93e85\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3408,2486,'_elementor_edit_mode','builder'),(3409,2486,'_elementor_template_type','wp-page'),(3410,2486,'_elementor_version','3.10.1'),(3411,2486,'_wp_page_template','default'),(3412,2486,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"#2454\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"0a93e85\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy Now\",\"background_color\":\"#605BE5\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"ffeeb1d\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%222454%22%7D\\\"]\"},\"align\":\"center\",\"size\":\"md\",\"hover_animation\":\"grow\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"100\",\"bottom\":\"15\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3413,2486,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3414,2486,'_elementor_pro_version','3.7.7'),(3415,2486,'_elementor_css','a:6:{s:4:\"time\";i:1675679651;s:5:\"fonts\";a:4:{i:0;s:6:\"Roboto\";i:1;s:4:\"Lato\";i:2;s:7:\"Poppins\";i:6;s:9:\"Open Sans\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:5;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:1:{i:0;s:7:\"0a93e85\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3416,2487,'_elementor_edit_mode','builder'),(3417,2487,'_elementor_template_type','wp-page'),(3418,2487,'_elementor_version','3.10.1'),(3419,2487,'_wp_page_template','default'),(3420,2487,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"b7923cd\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy Now\",\"background_color\":\"#605BE5\",\"__dynamic__\":[],\"link\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"hover_animation\":\"grow\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"100\",\"bottom\":\"15\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"071c7bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy Now\",\"background_color\":\"#605BE5\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"ffeeb1d\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%222454%22%7D\\\"]\"},\"align\":\"center\",\"size\":\"md\",\"hover_animation\":\"grow\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"100\",\"bottom\":\"15\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"#2454\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"0a93e85\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy Now\",\"background_color\":\"#605BE5\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"ffeeb1d\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%222454%22%7D\\\"]\"},\"align\":\"center\",\"size\":\"md\",\"hover_animation\":\"grow\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"100\",\"bottom\":\"15\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3421,2487,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3422,2487,'_elementor_pro_version','3.7.7'),(3423,2487,'_elementor_css','a:6:{s:4:\"time\";i:1675679651;s:5:\"fonts\";a:4:{i:0;s:6:\"Roboto\";i:1;s:4:\"Lato\";i:2;s:7:\"Poppins\";i:6;s:9:\"Open Sans\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:5;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:1:{i:0;s:7:\"0a93e85\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3424,2488,'_elementor_edit_mode','builder'),(3425,2488,'_elementor_template_type','wp-page'),(3426,2488,'_elementor_version','3.10.1'),(3427,2488,'_wp_page_template','default'),(3428,2488,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"b7923cd\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy Now\",\"background_color\":\"#605BE5\",\"__dynamic__\":[],\"link\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"hover_animation\":\"grow\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"100\",\"bottom\":\"15\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"071c7bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy Now\",\"background_color\":\"#605BE5\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"ffeeb1d\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%222454%22%7D\\\"]\"},\"align\":\"center\",\"size\":\"md\",\"hover_animation\":\"grow\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"100\",\"bottom\":\"15\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"#2454\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"0a93e85\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy Now\",\"background_color\":\"#605BE5\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"ffeeb1d\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%222454%22%7D\\\"]\"},\"align\":\"center\",\"size\":\"md\",\"hover_animation\":\"grow\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"100\",\"bottom\":\"15\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3429,2488,'_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\";}}'),(3430,2488,'_elementor_pro_version','3.7.7'),(3431,2489,'_elementor_edit_mode','builder'),(3432,2489,'_elementor_template_type','wp-page'),(3433,2489,'_elementor_version','3.10.1'),(3434,2489,'_wp_page_template','default'),(3435,2489,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"b7923cd\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy Now\",\"background_color\":\"#605BE5\",\"__dynamic__\":[],\"link\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"hover_animation\":\"grow\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"100\",\"bottom\":\"15\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"071c7bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy Now\",\"background_color\":\"#605BE5\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"ffeeb1d\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%222454%22%7D\\\"]\"},\"align\":\"center\",\"size\":\"md\",\"hover_animation\":\"grow\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"100\",\"bottom\":\"15\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"#2454\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"0a93e85\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy Now\",\"background_color\":\"#605BE5\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"ffeeb1d\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%222454%22%7D\\\"]\"},\"align\":\"center\",\"size\":\"md\",\"hover_animation\":\"grow\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"100\",\"bottom\":\"15\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3436,2489,'_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\";}}'),(3437,2489,'_elementor_pro_version','3.7.7'),(3438,2490,'_elementor_edit_mode','builder'),(3439,2490,'_elementor_template_type','wp-page'),(3440,2490,'_elementor_version','3.10.1'),(3441,2490,'_wp_page_template','default'),(3442,2490,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"b7923cd\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy Now\",\"background_color\":\"#605BE5\",\"__dynamic__\":[],\"link\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"hover_animation\":\"grow\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"100\",\"bottom\":\"15\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"071c7bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy Now\",\"background_color\":\"#605BE5\",\"__dynamic__\":[],\"link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"hover_animation\":\"grow\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"100\",\"bottom\":\"15\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"#2454\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"0a93e85\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy Now\",\"background_color\":\"#605BE5\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"ffeeb1d\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%222454%22%7D\\\"]\"},\"align\":\"center\",\"size\":\"md\",\"hover_animation\":\"grow\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"100\",\"bottom\":\"15\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3443,2490,'_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\";}}'),(3444,2490,'_elementor_pro_version','3.7.7'),(3446,2491,'_elementor_edit_mode','builder'),(3447,2491,'_elementor_template_type','wp-page'),(3448,2491,'_elementor_version','3.10.1'),(3449,2491,'_wp_page_template','default'),(3450,2491,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"b7923cd\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy Now\",\"background_color\":\"#605BE5\",\"__dynamic__\":[],\"link\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"hover_animation\":\"grow\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"100\",\"bottom\":\"15\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"071c7bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy Now\",\"background_color\":\"#605BE5\",\"__dynamic__\":[],\"link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"hover_animation\":\"grow\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"100\",\"bottom\":\"15\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"#2454\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"0a93e85\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy Now\",\"background_color\":\"#605BE5\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"ffeeb1d\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%222454%22%7D\\\"]\"},\"align\":\"center\",\"size\":\"md\",\"hover_animation\":\"grow\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"100\",\"bottom\":\"15\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3451,2491,'_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\";}}'),(3452,2491,'_elementor_pro_version','3.7.7'),(3453,2491,'_elementor_css','a:6:{s:4:\"time\";i:1675679725;s:5:\"fonts\";a:4:{i:0;s:6:\"Roboto\";i:1;s:4:\"Lato\";i:2;s:7:\"Poppins\";i:6;s:9:\"Open Sans\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:5;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:1:{i:0;s:7:\"0a93e85\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3454,2492,'_elementor_edit_mode','builder'),(3455,2492,'_elementor_template_type','wp-page'),(3456,2492,'_elementor_version','3.10.1'),(3457,2492,'_wp_page_template','default'),(3458,2492,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"b7923cd\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy Now\",\"background_color\":\"#605BE5\",\"__dynamic__\":[],\"link\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"hover_animation\":\"grow\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"100\",\"bottom\":\"15\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"071c7bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy Now\",\"background_color\":\"#605BE5\",\"__dynamic__\":[],\"link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"hover_animation\":\"grow\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"100\",\"bottom\":\"15\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"button\",\"_id\":\"ab42b32\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Buy Now\",\"feature_tooltip_text\":\"Tooltip Text\",\"btn_url\":{\"url\":\"#2454\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1c0d86d\",\"type_select\":\"text\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"30 Days Money Back Guarantee\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"0a93e85\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy Now\",\"background_color\":\"#605BE5\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"ffeeb1d\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%222454%22%7D\\\"]\"},\"align\":\"center\",\"size\":\"md\",\"hover_animation\":\"grow\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"100\",\"bottom\":\"15\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3459,2492,'_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\";}}'),(3460,2492,'_elementor_pro_version','3.7.7'),(3461,2492,'_elementor_css','a:6:{s:4:\"time\";i:1675679725;s:5:\"fonts\";a:4:{i:0;s:6:\"Roboto\";i:1;s:4:\"Lato\";i:2;s:7:\"Poppins\";i:6;s:9:\"Open Sans\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:5;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:1:{i:0;s:7:\"0a93e85\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3462,2493,'_elementor_edit_mode','builder'),(3463,2493,'_elementor_template_type','wp-page'),(3464,2493,'_elementor_version','3.10.1'),(3465,2493,'_wp_page_template','default'),(3466,2493,'_elementor_data','[{\"id\":\"70256cf30\",\"elType\":\"section\",\"settings\":{\"bg_image\":{\"id\":2136,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"6127a41\",\"repeater_bg_image\":{\"id\":2137,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"7c7da86\",\"repeater_bg_image\":{\"id\":2138,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"}}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73299f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58634a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right Plan for Your Business\",\"align\":\"center\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35db9fff\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text_color\":\"#2F2F2F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.<\\/p>\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3779c11d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"bg_image\":{\"id\":2133,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"4371ac5\",\"repeater_bg_image\":{\"id\":2134,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"2e6acc6\",\"repeater_bg_image\":{\"id\":2135,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"}}]},\"elements\":[{\"id\":\"b5b5722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"186c1abe\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Starter\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"29\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>1 Site License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"b7923cd\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy Now\",\"background_color\":\"#605BE5\",\"__dynamic__\":[],\"link\":{\"url\":\"https:\\/\\/demo.subscriptionflow.com\\/en\\/hosted-page\\/subscribe\\/b277e941-8936-46ff-baaf-87cca1bfe297\\/product\\/7e1404d0-0080-45aa-9886-53ac3f619a01\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"hover_animation\":\"grow\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"100\",\"bottom\":\"15\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"b774aab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>30 Days Money Back Guarantee<\\/p>\",\"align\":\"center\",\"text_color\":\"#7A7A7AD1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2a3ff4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f2b1724\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Professional\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"49\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>3 Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"_id\":\"d56da5e\",\"type_select\":\"feature\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"btn_text\":\"Button\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Save 44%\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"badge_distance\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"badge_bg_color\":\"#FF314F\",\"badge_typography_typography\":\"custom\",\"badge_typography_font_family\":\"Poppins\",\"badge_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"badge_typography_font_weight\":\"500\",\"badge_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"badge_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"071c7bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy Now\",\"background_color\":\"#605BE5\",\"__dynamic__\":[],\"link\":{\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/professional-plan\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"hover_animation\":\"grow\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"100\",\"bottom\":\"15\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1719878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>30 Days Money Back Guarantee<\\/p>\",\"align\":\"center\",\"text_color\":\"#7A7A7AD1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"15b431c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdad02a\",\"elType\":\"widget\",\"settings\":{\"pricing_items\":[{\"select_icon\":{\"value\":\"far fa-gem\",\"library\":\"fa-regular\"},\"_id\":\"1e3d479\",\"heading_title\":\"Business\",\"heading_sub_title\":\"Plan\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"heading_icon_type\":\"none\"},{\"type_select\":\"price\",\"_id\":\"db1daea\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"199\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Year\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"divider\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"feature_text\":\"Awesome Feature\",\"btn_text\":\"Get Started\",\"feature_tooltip_text\":\"Tooltip Text\",\"divider_style\":\"solid\",\"divider_bg_color\":\"#F9F9F900\",\"divider_color\":\"#E7E7E7\",\"divider_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"787612d\",\"divider_width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"divider_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},{\"type_select\":\"feature\",\"feature_text\":\"<strong>Unlimited Sites License<\\/strong>\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"44394e0\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"feature_icon_color\":\"#35D89A\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Support\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"d831880\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\" Avg. 1 Day Response Time (For 1 Member)\"},{\"type_select\":\"feature\",\"feature_text\":\"1 Year Updates\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"0377dd3\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"},{\"type_select\":\"feature\",\"feature_text\":\"All Pro Features\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\",\"_id\":\"ff0b0cb\"},{\"type_select\":\"feature\",\"feature_text\":\"25% Renewal Discount\",\"feature_icon_color\":\"#35D89A\",\"select_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"_id\":\"3a4229c\",\"heading_title\":\"Awesome Title\",\"heading_sub_title\":\"Subtitle text\",\"text\":\"Text Element\",\"price\":\"59\",\"sub_price\":\"99\",\"currency\":\"$\",\"old_price\":\"55\",\"preiod\":\"\\/Month\",\"btn_text\":\"Button\",\"feature_tooltip_text\":\"Tooltip Text\"}],\"badge_title\":\"Sale\",\"badge_style\":\"none\",\"heading_bg_color_background\":\"classic\",\"heading_bg_color_color\":\"#F9F9F908\",\"heading_section_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"27\",\"bottom\":\"20\",\"left\":\"27\",\"isLinked\":false},\"heading_title_typography_typography\":\"custom\",\"heading_title_typography_font_family\":\"Poppins\",\"heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_title_typography_font_weight\":\"500\",\"heading_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"heading_sub_title_color\":\"#B2B2B2\",\"heading_sub_title_typography_typography\":\"custom\",\"heading_sub_title_typography_font_family\":\"Poppins\",\"heading_sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_sub_title_typography_font_weight\":\"400\",\"heading_sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"price_wrap_bg_color_background\":\"classic\",\"price_wrap_bg_color_color\":\"#605BE500\",\"price_wrap_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"price_color\":\"#3E3E3E\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"old_price_color\":\"#6A55FF\",\"period_color\":\"#3E3E3E\",\"feature_bg_color\":\"#F9F9F900\",\"feature_section_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"40\",\"bottom\":\"9\",\"left\":\"40\",\"isLinked\":false},\"feature_section_top_distance\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"feature_section_bot_distance\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"feature_typography_typography\":\"custom\",\"feature_typography_font_family\":\"Open Sans\",\"feature_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"feature_typography_font_weight\":\"500\",\"feature_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"feature_align\":\"\",\"feature_tooltip_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"feature_divider\":\"\",\"btn_section_bg_color_background\":\"classic\",\"btn_section_bg_color_color\":\"#F9F9F900\",\"btn_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"btn_bg_color_background\":\"gradient\",\"btn_bg_color_color\":\"#9182FB\",\"btn_bg_color_color_b\":\"#6A55FF\",\"btn_typography_typography\":\"custom\",\"btn_typography_font_family\":\"Poppins\",\"btn_typography_font_weight\":\"400\",\"btn_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"btn_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"90\",\"bottom\":\"11\",\"left\":\"90\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wrapper_bg_color_background\":\"classic\",\"wrapper_bg_color_color\":\"#FFFFFF\",\"wrapper_box_shadow_box_shadow_type\":\"yes\",\"wrapper_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(168.99999999999997, 168.99999999999997, 168.99999999999997, 0.21)\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"wrapper_border_radius\":{\"unit\":\"px\",\"size\":15,\"sizes\":[],\"top\":0,\"right\":0,\"bottom\":0,\"left\":0},\"period_typography_typography\":\"custom\",\"period_typography_font_family\":\"Poppins\",\"period_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"period_typography_font_weight\":\"400\",\"btn_animation\":\"elementor-animation-shrink\",\"btn_transition_duration\":0.6,\"btn_bg_color_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"text_section_bg_color_background\":\"classic\",\"text_section_bg_color_color\":\"#FFFFFF\",\"text_section_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_family\":\"Roboto\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"text_typography_font_weight\":\"400\",\"text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"custom_css\":\"selector .wpr-pricing-table-sub-price {\\r\\n color: #777;\\r\\n}\",\"feature_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"btn_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"btn_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"11\",\"left\":\"50\",\"isLinked\":false},\"text_typography_typography\":\"custom\",\"text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"heading_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"price_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"price_wrap_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"feature_section_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"feature_align_tablet\":\"flex-start\",\"feature_align_mobile\":\"center\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"sub_price_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"old_price_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"period_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"feature_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"btn_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"btn_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"11\",\"left\":\"60\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wpr-pricing-table\"},{\"id\":\"0a93e85\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy Now\",\"background_color\":\"#605BE5\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"ffeeb1d\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%222454%22%7D\\\"]\"},\"align\":\"center\",\"size\":\"md\",\"hover_animation\":\"grow\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"100\",\"bottom\":\"15\",\"left\":\"100\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_css_classes\":\"custom-popup\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"38263ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>30 Days Money Back Guarantee<\\/p>\",\"align\":\"center\",\"text_color\":\"#7A7A7AD1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3467,2493,'_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\";}}'),(3468,2493,'_elementor_pro_version','3.7.7'),(3469,2493,'_elementor_css','a:6:{s:4:\"time\";i:1675679725;s:5:\"fonts\";a:4:{i:0;s:6:\"Roboto\";i:1;s:4:\"Lato\";i:2;s:7:\"Poppins\";i:6;s:9:\"Open Sans\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:5;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:1:{i:0;s:7:\"0a93e85\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3470,2131,'_elementor_css','a:6:{s:4:\"time\";i:1675679866;s:5:\"fonts\";a:4:{i:0;s:6:\"Roboto\";i:1;s:4:\"Lato\";i:2;s:7:\"Poppins\";i:6;s:9:\"Open Sans\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:5;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:1:{i:0;s:7:\"0a93e85\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3472,1679,'_elementor_css','a:6:{s:4:\"time\";i:1685455187;s:5:\"fonts\";a:2:{i:0;s:7:\"Poppins\";i:8;s:4:\"Lato\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3473,2149,'_elementor_css','a:7:{s:4:\"time\";i:1691323651;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(3474,1680,'_elementor_css','a:7:{s:4:\"time\";i:1692686700;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(3477,1158,'_elementor_css','a:6:{s:4:\"time\";i:1696430840;s:5:\"fonts\";a:2:{i:0;s:7:\"Poppins\";i:2;s:4:\"Lato\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:2;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3480,6,'_hash','fb68a6a05cf2a3ee8590e8ee6b913af0a54b5e58'),(3481,1785,'_hash','3e627d786af2679e00ff0f900cdd632a1ec9235d'),(3482,1160,'_edit_lock','1697723953:1'),(3483,2500,'_elementor_edit_mode','builder'),(3484,2500,'_elementor_template_type','wp-page'),(3485,2500,'_elementor_version','3.6.4'),(3486,2500,'_wp_page_template','elementor_canvas'),(3487,2500,'_elementor_data','s:15276:\"a:3:{i:0;a:5:{s:2:\"id\";s:7:\"893c472\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:12:{s:13:\"custom_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:408;s:5:\"sizes\";a:0:{}}s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:4:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:19:\"background_position\";s:13:\"center center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"e4713d4\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"cc0f674\";}}s:13:\"content_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1600;s:5:\"sizes\";a:0:{}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:3:\"100\";s:5:\"right\";i:0;s:6:\"bottom\";s:3:\"100\";s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:13:\"margin_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"50\";s:5:\"right\";i:0;s:6:\"bottom\";s:2:\"50\";s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:3:\"100\";s:5:\"right\";i:0;s:6:\"bottom\";s:1:\"0\";s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"a943570\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:9:{s:12:\"_column_size\";i:100;s:12:\"_inline_size\";N;s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:4:{s:3:\"url\";s:80:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-33.jpg\";s:2:\"id\";i:1558;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:19:\"background_position\";s:13:\"center center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";s:29:\"background_overlay_background\";s:7:\"classic\";s:24:\"background_overlay_color\";s:9:\"#212121C4\";}s:8:\"elements\";a:3:{i:0;a:5:{s:2:\"id\";s:7:\"cf01751\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:1:{s:5:\"space\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:150;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:6:\"spacer\";}i:1;a:5:{s:2:\"id\";s:7:\"b88494a\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:8:{s:5:\"title\";s:10:\"Contact Us\";s:5:\"align\";s:6:\"center\";s:11:\"title_color\";s:7:\"#FFFFFF\";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:70;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}i:2;a:5:{s:2:\"id\";s:7:\"ed27f71\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:1:{s:5:\"space\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:150;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:6:\"spacer\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}i:1;a:5:{s:2:\"id\";s:7:\"90e493b\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:6:{s:9:\"structure\";s:2:\"20\";s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"8bb8313\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"4859bea\";}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:3:\"100\";s:5:\"right\";i:0;s:6:\"bottom\";s:3:\"100\";s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:13:\"margin_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"50\";s:5:\"right\";i:0;s:6:\"bottom\";s:2:\"50\";s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"50\";s:5:\"right\";i:0;s:6:\"bottom\";s:3:\"100\";s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:2:{i:0;a:5:{s:2:\"id\";s:7:\"cd8caa1\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:3:{s:12:\"_column_size\";i:50;s:12:\"_inline_size\";N;s:19:\"_inline_size_tablet\";i:100;}s:8:\"elements\";a:3:{i:0;a:5:{s:2:\"id\";s:7:\"565d4d9\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:8:{s:5:\"title\";s:19:\"Kagon Brand Contact\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#222222\";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:30;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}i:1;a:5:{s:2:\"id\";s:7:\"be3e8e1\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:7:{s:6:\"editor\";s:174:\"<p>Dwelling and speedily ignorant any steepest. Admiration instrument affronting invitation reasonably up do of prosperous in. Shy saw declared age debating ecstatic man.</p>\";s:5:\"align\";s:4:\"left\";s:10:\"text_color\";s:7:\"#777777\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:11:\"text-editor\";}i:2;a:5:{s:2:\"id\";s:7:\"eec1db0\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:2:{s:9:\"structure\";s:2:\"20\";s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"754ff1f\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"57bed79\";}}}s:8:\"elements\";a:2:{i:0;a:5:{s:2:\"id\";s:7:\"8c16475\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:3:{s:12:\"_column_size\";i:50;s:12:\"_inline_size\";N;s:6:\"margin\";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:3:\"-10\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:2:{i:0;a:5:{s:2:\"id\";s:7:\"e7d20d1\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:20:{s:10:\"title_text\";s:13:\"Working Hours\";s:16:\"description_text\";s:28:\"Mon – Fri : 8:30 – 18:00\";s:8:\"position\";s:4:\"left\";s:10:\"text_align\";s:4:\"left\";s:13:\"selected_icon\";a:2:{s:5:\"value\";s:12:\"fas fa-clock\";s:7:\"library\";s:8:\"fa-solid\";}s:13:\"primary_color\";s:7:\"#222222\";s:10:\"icon_space\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:17;s:5:\"sizes\";a:0:{}}s:9:\"icon_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:21;s:5:\"sizes\";a:0:{}}s:26:\"content_vertical_alignment\";s:6:\"middle\";s:18:\"title_bottom_space\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:4;s:5:\"sizes\";a:0:{}}s:11:\"title_color\";s:7:\"#222222\";s:27:\"title_typography_typography\";s:6:\"custom\";s:28:\"title_typography_font_family\";s:7:\"Poppins\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:17;s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";s:3:\"500\";s:17:\"description_color\";s:7:\"#777777\";s:33:\"description_typography_typography\";s:6:\"custom\";s:34:\"description_typography_font_family\";s:7:\"Poppins\";s:32:\"description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:34:\"description_typography_font_weight\";s:3:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:8:\"icon-box\";}i:1;a:5:{s:2:\"id\";s:7:\"6507b90\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:20:{s:10:\"title_text\";s:18:\"Our Office Address\";s:16:\"description_text\";s:53:\"5954 Old Cove Heath Rd\nEupora, Mississippi(MS), 39744\";s:8:\"position\";s:4:\"left\";s:10:\"text_align\";s:4:\"left\";s:13:\"selected_icon\";a:2:{s:5:\"value\";s:21:\"fas fa-map-marker-alt\";s:7:\"library\";s:8:\"fa-solid\";}s:13:\"primary_color\";s:7:\"#222222\";s:10:\"icon_space\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:17;s:5:\"sizes\";a:0:{}}s:9:\"icon_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:21;s:5:\"sizes\";a:0:{}}s:26:\"content_vertical_alignment\";s:6:\"middle\";s:18:\"title_bottom_space\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:4;s:5:\"sizes\";a:0:{}}s:11:\"title_color\";s:7:\"#222222\";s:27:\"title_typography_typography\";s:6:\"custom\";s:28:\"title_typography_font_family\";s:7:\"Poppins\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:17;s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";s:3:\"500\";s:17:\"description_color\";s:7:\"#777777\";s:33:\"description_typography_typography\";s:6:\"custom\";s:34:\"description_typography_font_family\";s:7:\"Poppins\";s:32:\"description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:34:\"description_typography_font_weight\";s:3:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:8:\"icon-box\";}}s:7:\"isInner\";b:1;}i:1;a:5:{s:2:\"id\";s:7:\"1ba8798\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:3:{s:12:\"_column_size\";i:50;s:12:\"_inline_size\";N;s:13:\"margin_mobile\";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:3:\"-10\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:2:{i:0;a:5:{s:2:\"id\";s:7:\"5fa6bbb\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:20:{s:10:\"title_text\";s:19:\"Office Phone Number\";s:16:\"description_text\";s:17:\"+1 (662) 258-5616\";s:8:\"position\";s:4:\"left\";s:10:\"text_align\";s:4:\"left\";s:13:\"selected_icon\";a:2:{s:5:\"value\";s:16:\"fas fa-phone-alt\";s:7:\"library\";s:8:\"fa-solid\";}s:13:\"primary_color\";s:7:\"#222222\";s:10:\"icon_space\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:17;s:5:\"sizes\";a:0:{}}s:9:\"icon_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:21;s:5:\"sizes\";a:0:{}}s:26:\"content_vertical_alignment\";s:6:\"middle\";s:18:\"title_bottom_space\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:4;s:5:\"sizes\";a:0:{}}s:11:\"title_color\";s:7:\"#222222\";s:27:\"title_typography_typography\";s:6:\"custom\";s:28:\"title_typography_font_family\";s:7:\"Poppins\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:17;s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";s:3:\"500\";s:17:\"description_color\";s:7:\"#777777\";s:33:\"description_typography_typography\";s:6:\"custom\";s:34:\"description_typography_font_family\";s:7:\"Poppins\";s:32:\"description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:34:\"description_typography_font_weight\";s:3:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:8:\"icon-box\";}i:1;a:5:{s:2:\"id\";s:7:\"7540495\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:20:{s:10:\"title_text\";s:11:\"Kagan Email\";s:16:\"description_text\";s:22:\"Kaganswimwear@mail.com\";s:8:\"position\";s:4:\"left\";s:10:\"text_align\";s:4:\"left\";s:13:\"selected_icon\";a:2:{s:5:\"value\";s:15:\"fas fa-envelope\";s:7:\"library\";s:8:\"fa-solid\";}s:13:\"primary_color\";s:7:\"#222222\";s:10:\"icon_space\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:17;s:5:\"sizes\";a:0:{}}s:9:\"icon_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:21;s:5:\"sizes\";a:0:{}}s:26:\"content_vertical_alignment\";s:6:\"middle\";s:18:\"title_bottom_space\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:4;s:5:\"sizes\";a:0:{}}s:11:\"title_color\";s:7:\"#222222\";s:27:\"title_typography_typography\";s:6:\"custom\";s:28:\"title_typography_font_family\";s:7:\"Poppins\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:17;s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";s:3:\"500\";s:17:\"description_color\";s:7:\"#777777\";s:33:\"description_typography_typography\";s:6:\"custom\";s:34:\"description_typography_font_family\";s:7:\"Poppins\";s:32:\"description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:34:\"description_typography_font_weight\";s:3:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:8:\"icon-box\";}}s:7:\"isInner\";b:1;}}s:7:\"isInner\";b:1;}}s:7:\"isInner\";b:0;}i:1;a:5:{s:2:\"id\";s:7:\"0888320\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:3:{s:12:\"_column_size\";i:50;s:12:\"_inline_size\";N;s:19:\"_inline_size_tablet\";i:100;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"ee74267\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:26:{s:13:\"plugin_select\";s:4:\"cf-7\";s:13:\"cf7_templates\";s:4:\"1785\";s:11:\"input_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:21:\"input_textarea_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:168;s:5:\"sizes\";a:0:{}}s:11:\"label_color\";s:7:\"#777777\";s:11:\"input_color\";s:7:\"#222222\";s:23:\"input_placeholder_color\";s:7:\"#222222\";s:25:\"input_transition_duration\";d:0.3;s:27:\"input_typography_typography\";s:6:\"custom\";s:28:\"input_typography_font_family\";s:7:\"Poppins\";s:28:\"input_typography_font_weight\";s:3:\"400\";s:13:\"input_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:16:\"submit_btn_align\";s:7:\"justify\";s:30:\"submit_btn_bg_color_background\";s:7:\"classic\";s:25:\"submit_btn_bg_color_color\";s:7:\"#FF4F40\";s:16:\"submit_btn_color\";s:7:\"#FFFFFF\";s:23:\"submit_btn_border_color\";s:7:\"#FF4F40\";s:32:\"read_more_bg_color_hr_background\";s:7:\"classic\";s:27:\"read_more_bg_color_hr_color\";s:7:\"#E73B2D\";s:26:\"submit_btn_border_color_hr\";s:7:\"#E73B2D\";s:30:\"submit_btn_transition_duration\";d:0.3;s:32:\"submit_btn_typography_typography\";s:6:\"custom\";s:33:\"submit_btn_typography_font_family\";s:7:\"Poppins\";s:31:\"submit_btn_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:33:\"submit_btn_typography_font_weight\";s:3:\"400\";s:17:\"submit_btn_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:1;}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:9:\"wpr-forms\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}i:2;a:5:{s:2:\"id\";s:7:\"787b26f\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:3:{s:6:\"layout\";s:10:\"full_width\";s:3:\"gap\";s:2:\"no\";s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"8638b1b\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"92afded\";}}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"2ef4ba7\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:2:{s:12:\"_column_size\";i:100;s:12:\"_inline_size\";N;}s:8:\"elements\";a:2:{i:0;a:5:{s:2:\"id\";s:7:\"a5e2005\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:6:{s:5:\"title\";s:125:\"Please go to plugin Settings and Insert Google Map API Key in order to make Google Maps work, then delete this text manually \";s:5:\"align\";s:6:\"center\";s:11:\"title_color\";s:7:\"#CE4242\";s:23:\"stax_visibility_enabled\";s:3:\"yes\";s:33:\"stax_visibility_user_role_enabled\";s:3:\"yes\";s:36:\"stax_visibility_user_role_conditions\";a:1:{i:0;s:9:\"ecl-guest\";}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}i:1;a:5:{s:2:\"id\";s:7:\"7b72cb8\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:7:{s:9:\"gm_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:301;s:5:\"sizes\";a:0:{}}s:20:\"google_map_locations\";a:1:{i:0;a:5:{s:17:\"gm_location_title\";s:27:\"Central Park, New York, USA\";s:11:\"gm_latitude\";s:9:\"40.782864\";s:13:\"gm_longtitude\";s:10:\"-73.965355\";s:3:\"_id\";s:7:\"d9047fa\";s:19:\"gm_show_info_window\";s:4:\"none\";}}s:15:\"gm_color_scheme\";s:12:\"light-silver\";s:20:\"gm_controls_map_type\";s:0:\"\";s:22:\"gm_controls_fullscreen\";s:0:\"\";s:16:\"gm_controls_zoom\";s:0:\"\";s:23:\"gm_controls_street_view\";s:0:\"\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:15:\"wpr-google-maps\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}}\";'),(3488,2500,'_elementor_page_assets','a:0:{}'),(3489,2500,'_elementor_page_settings',''),(3490,2500,'_elementor_css','a:6:{s:4:\"time\";i:1685455158;s:5:\"fonts\";a:2:{i:0;s:7:\"Poppins\";i:2;s:4:\"Lato\";}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3491,2501,'_elementor_edit_mode','builder'),(3492,2501,'_elementor_template_type','wp-page'),(3493,2501,'_elementor_version','3.6.4'),(3494,2501,'_wp_page_template','elementor_canvas'),(3495,2501,'_elementor_data','s:15276:\"a:3:{i:0;a:5:{s:2:\"id\";s:7:\"893c472\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:12:{s:13:\"custom_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:408;s:5:\"sizes\";a:0:{}}s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:4:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:19:\"background_position\";s:13:\"center center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"e4713d4\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"cc0f674\";}}s:13:\"content_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1600;s:5:\"sizes\";a:0:{}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:3:\"100\";s:5:\"right\";i:0;s:6:\"bottom\";s:3:\"100\";s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:13:\"margin_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"50\";s:5:\"right\";i:0;s:6:\"bottom\";s:2:\"50\";s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:3:\"100\";s:5:\"right\";i:0;s:6:\"bottom\";s:1:\"0\";s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"a943570\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:9:{s:12:\"_column_size\";i:100;s:12:\"_inline_size\";N;s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:4:{s:3:\"url\";s:80:\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-33.jpg\";s:2:\"id\";i:1558;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:19:\"background_position\";s:13:\"center center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";s:29:\"background_overlay_background\";s:7:\"classic\";s:24:\"background_overlay_color\";s:9:\"#212121C4\";}s:8:\"elements\";a:3:{i:0;a:5:{s:2:\"id\";s:7:\"cf01751\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:1:{s:5:\"space\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:150;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:6:\"spacer\";}i:1;a:5:{s:2:\"id\";s:7:\"b88494a\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:8:{s:5:\"title\";s:10:\"Contact Us\";s:5:\"align\";s:6:\"center\";s:11:\"title_color\";s:7:\"#FFFFFF\";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:70;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}i:2;a:5:{s:2:\"id\";s:7:\"ed27f71\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:1:{s:5:\"space\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:150;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:6:\"spacer\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}i:1;a:5:{s:2:\"id\";s:7:\"90e493b\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:6:{s:9:\"structure\";s:2:\"20\";s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"8bb8313\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"4859bea\";}}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:3:\"100\";s:5:\"right\";i:0;s:6:\"bottom\";s:3:\"100\";s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:13:\"margin_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"50\";s:5:\"right\";i:0;s:6:\"bottom\";s:2:\"50\";s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"50\";s:5:\"right\";i:0;s:6:\"bottom\";s:3:\"100\";s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:2:{i:0;a:5:{s:2:\"id\";s:7:\"cd8caa1\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:3:{s:12:\"_column_size\";i:50;s:12:\"_inline_size\";N;s:19:\"_inline_size_tablet\";i:100;}s:8:\"elements\";a:3:{i:0;a:5:{s:2:\"id\";s:7:\"565d4d9\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:8:{s:5:\"title\";s:19:\"Kagon Brand Contact\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#222222\";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:30;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}i:1;a:5:{s:2:\"id\";s:7:\"be3e8e1\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:7:{s:6:\"editor\";s:174:\"<p>Dwelling and speedily ignorant any steepest. Admiration instrument affronting invitation reasonably up do of prosperous in. Shy saw declared age debating ecstatic man.</p>\";s:5:\"align\";s:4:\"left\";s:10:\"text_color\";s:7:\"#777777\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:11:\"text-editor\";}i:2;a:5:{s:2:\"id\";s:7:\"eec1db0\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:2:{s:9:\"structure\";s:2:\"20\";s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"754ff1f\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"57bed79\";}}}s:8:\"elements\";a:2:{i:0;a:5:{s:2:\"id\";s:7:\"8c16475\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:3:{s:12:\"_column_size\";i:50;s:12:\"_inline_size\";N;s:6:\"margin\";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:3:\"-10\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:2:{i:0;a:5:{s:2:\"id\";s:7:\"e7d20d1\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:20:{s:10:\"title_text\";s:13:\"Working Hours\";s:16:\"description_text\";s:28:\"Mon – Fri : 8:30 – 18:00\";s:8:\"position\";s:4:\"left\";s:10:\"text_align\";s:4:\"left\";s:13:\"selected_icon\";a:2:{s:5:\"value\";s:12:\"fas fa-clock\";s:7:\"library\";s:8:\"fa-solid\";}s:13:\"primary_color\";s:7:\"#222222\";s:10:\"icon_space\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:17;s:5:\"sizes\";a:0:{}}s:9:\"icon_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:21;s:5:\"sizes\";a:0:{}}s:26:\"content_vertical_alignment\";s:6:\"middle\";s:18:\"title_bottom_space\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:4;s:5:\"sizes\";a:0:{}}s:11:\"title_color\";s:7:\"#222222\";s:27:\"title_typography_typography\";s:6:\"custom\";s:28:\"title_typography_font_family\";s:7:\"Poppins\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:17;s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";s:3:\"500\";s:17:\"description_color\";s:7:\"#777777\";s:33:\"description_typography_typography\";s:6:\"custom\";s:34:\"description_typography_font_family\";s:7:\"Poppins\";s:32:\"description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:34:\"description_typography_font_weight\";s:3:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:8:\"icon-box\";}i:1;a:5:{s:2:\"id\";s:7:\"6507b90\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:20:{s:10:\"title_text\";s:18:\"Our Office Address\";s:16:\"description_text\";s:53:\"5954 Old Cove Heath Rd\nEupora, Mississippi(MS), 39744\";s:8:\"position\";s:4:\"left\";s:10:\"text_align\";s:4:\"left\";s:13:\"selected_icon\";a:2:{s:5:\"value\";s:21:\"fas fa-map-marker-alt\";s:7:\"library\";s:8:\"fa-solid\";}s:13:\"primary_color\";s:7:\"#222222\";s:10:\"icon_space\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:17;s:5:\"sizes\";a:0:{}}s:9:\"icon_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:21;s:5:\"sizes\";a:0:{}}s:26:\"content_vertical_alignment\";s:6:\"middle\";s:18:\"title_bottom_space\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:4;s:5:\"sizes\";a:0:{}}s:11:\"title_color\";s:7:\"#222222\";s:27:\"title_typography_typography\";s:6:\"custom\";s:28:\"title_typography_font_family\";s:7:\"Poppins\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:17;s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";s:3:\"500\";s:17:\"description_color\";s:7:\"#777777\";s:33:\"description_typography_typography\";s:6:\"custom\";s:34:\"description_typography_font_family\";s:7:\"Poppins\";s:32:\"description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:34:\"description_typography_font_weight\";s:3:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:8:\"icon-box\";}}s:7:\"isInner\";b:1;}i:1;a:5:{s:2:\"id\";s:7:\"1ba8798\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:3:{s:12:\"_column_size\";i:50;s:12:\"_inline_size\";N;s:13:\"margin_mobile\";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:3:\"-10\";s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:2:{i:0;a:5:{s:2:\"id\";s:7:\"5fa6bbb\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:20:{s:10:\"title_text\";s:19:\"Office Phone Number\";s:16:\"description_text\";s:17:\"+1 (662) 258-5616\";s:8:\"position\";s:4:\"left\";s:10:\"text_align\";s:4:\"left\";s:13:\"selected_icon\";a:2:{s:5:\"value\";s:16:\"fas fa-phone-alt\";s:7:\"library\";s:8:\"fa-solid\";}s:13:\"primary_color\";s:7:\"#222222\";s:10:\"icon_space\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:17;s:5:\"sizes\";a:0:{}}s:9:\"icon_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:21;s:5:\"sizes\";a:0:{}}s:26:\"content_vertical_alignment\";s:6:\"middle\";s:18:\"title_bottom_space\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:4;s:5:\"sizes\";a:0:{}}s:11:\"title_color\";s:7:\"#222222\";s:27:\"title_typography_typography\";s:6:\"custom\";s:28:\"title_typography_font_family\";s:7:\"Poppins\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:17;s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";s:3:\"500\";s:17:\"description_color\";s:7:\"#777777\";s:33:\"description_typography_typography\";s:6:\"custom\";s:34:\"description_typography_font_family\";s:7:\"Poppins\";s:32:\"description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:34:\"description_typography_font_weight\";s:3:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:8:\"icon-box\";}i:1;a:5:{s:2:\"id\";s:7:\"7540495\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:20:{s:10:\"title_text\";s:11:\"Kagan Email\";s:16:\"description_text\";s:22:\"Kaganswimwear@mail.com\";s:8:\"position\";s:4:\"left\";s:10:\"text_align\";s:4:\"left\";s:13:\"selected_icon\";a:2:{s:5:\"value\";s:15:\"fas fa-envelope\";s:7:\"library\";s:8:\"fa-solid\";}s:13:\"primary_color\";s:7:\"#222222\";s:10:\"icon_space\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:17;s:5:\"sizes\";a:0:{}}s:9:\"icon_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:21;s:5:\"sizes\";a:0:{}}s:26:\"content_vertical_alignment\";s:6:\"middle\";s:18:\"title_bottom_space\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:4;s:5:\"sizes\";a:0:{}}s:11:\"title_color\";s:7:\"#222222\";s:27:\"title_typography_typography\";s:6:\"custom\";s:28:\"title_typography_font_family\";s:7:\"Poppins\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:17;s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";s:3:\"500\";s:17:\"description_color\";s:7:\"#777777\";s:33:\"description_typography_typography\";s:6:\"custom\";s:34:\"description_typography_font_family\";s:7:\"Poppins\";s:32:\"description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:34:\"description_typography_font_weight\";s:3:\"400\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:8:\"icon-box\";}}s:7:\"isInner\";b:1;}}s:7:\"isInner\";b:1;}}s:7:\"isInner\";b:0;}i:1;a:5:{s:2:\"id\";s:7:\"0888320\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:3:{s:12:\"_column_size\";i:50;s:12:\"_inline_size\";N;s:19:\"_inline_size_tablet\";i:100;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"ee74267\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:26:{s:13:\"plugin_select\";s:4:\"cf-7\";s:13:\"cf7_templates\";s:4:\"1785\";s:11:\"input_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:21:\"input_textarea_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:168;s:5:\"sizes\";a:0:{}}s:11:\"label_color\";s:7:\"#777777\";s:11:\"input_color\";s:7:\"#222222\";s:23:\"input_placeholder_color\";s:7:\"#222222\";s:25:\"input_transition_duration\";d:0.3;s:27:\"input_typography_typography\";s:6:\"custom\";s:28:\"input_typography_font_family\";s:7:\"Poppins\";s:28:\"input_typography_font_weight\";s:3:\"400\";s:13:\"input_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:16:\"submit_btn_align\";s:7:\"justify\";s:30:\"submit_btn_bg_color_background\";s:7:\"classic\";s:25:\"submit_btn_bg_color_color\";s:7:\"#FF4F40\";s:16:\"submit_btn_color\";s:7:\"#FFFFFF\";s:23:\"submit_btn_border_color\";s:7:\"#FF4F40\";s:32:\"read_more_bg_color_hr_background\";s:7:\"classic\";s:27:\"read_more_bg_color_hr_color\";s:7:\"#E73B2D\";s:26:\"submit_btn_border_color_hr\";s:7:\"#E73B2D\";s:30:\"submit_btn_transition_duration\";d:0.3;s:32:\"submit_btn_typography_typography\";s:6:\"custom\";s:33:\"submit_btn_typography_font_family\";s:7:\"Poppins\";s:31:\"submit_btn_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:33:\"submit_btn_typography_font_weight\";s:3:\"400\";s:17:\"submit_btn_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:1;}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:9:\"wpr-forms\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}i:2;a:5:{s:2:\"id\";s:7:\"787b26f\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:3:{s:6:\"layout\";s:10:\"full_width\";s:3:\"gap\";s:2:\"no\";s:14:\"hover_parallax\";a:2:{i:0;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:30;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:40;}s:3:\"_id\";s:7:\"8638b1b\";}i:1;a:3:{s:17:\"layer_position_vr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:60;}s:17:\"layer_position_hr\";a:2:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:20;}s:3:\"_id\";s:7:\"92afded\";}}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"2ef4ba7\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:2:{s:12:\"_column_size\";i:100;s:12:\"_inline_size\";N;}s:8:\"elements\";a:2:{i:0;a:5:{s:2:\"id\";s:7:\"a5e2005\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:6:{s:5:\"title\";s:125:\"Please go to plugin Settings and Insert Google Map API Key in order to make Google Maps work, then delete this text manually \";s:5:\"align\";s:6:\"center\";s:11:\"title_color\";s:7:\"#CE4242\";s:23:\"stax_visibility_enabled\";s:3:\"yes\";s:33:\"stax_visibility_user_role_enabled\";s:3:\"yes\";s:36:\"stax_visibility_user_role_conditions\";a:1:{i:0;s:9:\"ecl-guest\";}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"heading\";}i:1;a:5:{s:2:\"id\";s:7:\"7b72cb8\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:7:{s:9:\"gm_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:301;s:5:\"sizes\";a:0:{}}s:20:\"google_map_locations\";a:1:{i:0;a:5:{s:17:\"gm_location_title\";s:27:\"Central Park, New York, USA\";s:11:\"gm_latitude\";s:9:\"40.782864\";s:13:\"gm_longtitude\";s:10:\"-73.965355\";s:3:\"_id\";s:7:\"d9047fa\";s:19:\"gm_show_info_window\";s:4:\"none\";}}s:15:\"gm_color_scheme\";s:12:\"light-silver\";s:20:\"gm_controls_map_type\";s:0:\"\";s:22:\"gm_controls_fullscreen\";s:0:\"\";s:16:\"gm_controls_zoom\";s:0:\"\";s:23:\"gm_controls_street_view\";s:0:\"\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:15:\"wpr-google-maps\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}}\";'),(3496,2501,'_elementor_page_assets','a:0:{}'),(3497,2501,'_elementor_page_settings',''),(3498,2501,'_elementor_css','a:6:{s:4:\"time\";i:1685455158;s:5:\"fonts\";a:2:{i:0;s:7:\"Poppins\";i:2;s:4:\"Lato\";}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3499,2502,'_elementor_edit_mode','builder'),(3500,2502,'_elementor_template_type','wp-page'),(3501,2502,'_elementor_version','3.6.4'),(3502,2502,'_wp_page_template','elementor_canvas'),(3503,2502,'_elementor_data','[{\"id\":\"90e493b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"8bb8313\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"4859bea\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0888320\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"ee74267\",\"elType\":\"widget\",\"settings\":{\"plugin_select\":\"cf-7\",\"cf7_templates\":\"1785\",\"input_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"input_textarea_height\":{\"unit\":\"px\",\"size\":168,\"sizes\":[]},\"label_color\":\"#777777\",\"input_color\":\"#222222\",\"input_placeholder_color\":\"#222222\",\"input_transition_duration\":0.3,\"input_typography_typography\":\"custom\",\"input_typography_font_family\":\"Poppins\",\"input_typography_font_weight\":\"400\",\"input_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"submit_btn_align\":\"justify\",\"submit_btn_bg_color_background\":\"classic\",\"submit_btn_bg_color_color\":\"#FF4F40\",\"submit_btn_color\":\"#FFFFFF\",\"submit_btn_border_color\":\"#FF4F40\",\"read_more_bg_color_hr_background\":\"classic\",\"read_more_bg_color_hr_color\":\"#E73B2D\",\"submit_btn_border_color_hr\":\"#E73B2D\",\"submit_btn_transition_duration\":0.3,\"submit_btn_typography_typography\":\"custom\",\"submit_btn_typography_font_family\":\"Poppins\",\"submit_btn_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"submit_btn_typography_font_weight\":\"400\",\"submit_btn_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wpr-forms\"}],\"isInner\":false}],\"isInner\":false}]'),(3504,2502,'_elementor_page_assets','a:0:{}'),(3505,2502,'_elementor_css','a:6:{s:4:\"time\";i:1685455158;s:5:\"fonts\";a:2:{i:0;s:7:\"Poppins\";i:2;s:4:\"Lato\";}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3506,1160,'_elementor_pro_version','3.7.7'),(3509,2503,'_elementor_edit_mode','builder'),(3510,2503,'_elementor_template_type','wp-page'),(3511,2503,'_elementor_version','3.16.6'),(3512,2503,'_wp_page_template','elementor_canvas'),(3513,2503,'_elementor_data','[{\"id\":\"90e493b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"8bb8313\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"4859bea\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0888320\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"ee74267\",\"elType\":\"widget\",\"settings\":{\"plugin_select\":\"cf-7\",\"cf7_templates\":\"1785\",\"input_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"input_textarea_height\":{\"unit\":\"px\",\"size\":168,\"sizes\":[]},\"label_color\":\"#777777\",\"input_color\":\"#222222\",\"input_placeholder_color\":\"#222222\",\"input_transition_duration\":0.3,\"input_typography_typography\":\"custom\",\"input_typography_font_family\":\"Poppins\",\"input_typography_font_weight\":\"400\",\"input_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"submit_btn_align\":\"justify\",\"submit_btn_bg_color_background\":\"classic\",\"submit_btn_bg_color_color\":\"#FF4F40\",\"submit_btn_color\":\"#FFFFFF\",\"submit_btn_border_color\":\"#FF4F40\",\"read_more_bg_color_hr_background\":\"classic\",\"read_more_bg_color_hr_color\":\"#E73B2D\",\"submit_btn_border_color_hr\":\"#E73B2D\",\"submit_btn_transition_duration\":0.3,\"submit_btn_typography_typography\":\"custom\",\"submit_btn_typography_font_family\":\"Poppins\",\"submit_btn_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"submit_btn_typography_font_weight\":\"400\",\"submit_btn_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wpr-forms\"}],\"isInner\":false}],\"isInner\":false}]'),(3514,2503,'_elementor_page_assets','a:0:{}'),(3515,2503,'_elementor_pro_version','3.7.7'),(3516,2503,'_elementor_css','a:6:{s:4:\"time\";i:1697721897;s:5:\"fonts\";a:1:{i:0;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:\"\";}'),(3517,2504,'_elementor_edit_mode','builder'),(3518,2504,'_elementor_template_type','wp-page'),(3519,2504,'_elementor_version','3.16.6'),(3520,2504,'_wp_page_template','elementor_canvas'),(3521,2504,'_elementor_data','[{\"id\":\"90e493b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"8bb8313\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"4859bea\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0888320\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"ee74267\",\"elType\":\"widget\",\"settings\":{\"plugin_select\":\"cf-7\",\"cf7_templates\":\"1785\",\"input_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"input_textarea_height\":{\"unit\":\"px\",\"size\":168,\"sizes\":[]},\"label_color\":\"#777777\",\"input_color\":\"#222222\",\"input_placeholder_color\":\"#222222\",\"input_transition_duration\":0.3,\"input_typography_typography\":\"custom\",\"input_typography_font_family\":\"Poppins\",\"input_typography_font_weight\":\"400\",\"input_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"submit_btn_align\":\"justify\",\"submit_btn_bg_color_background\":\"classic\",\"submit_btn_bg_color_color\":\"#FF4F40\",\"submit_btn_color\":\"#FFFFFF\",\"submit_btn_border_color\":\"#FF4F40\",\"read_more_bg_color_hr_background\":\"classic\",\"read_more_bg_color_hr_color\":\"#E73B2D\",\"submit_btn_border_color_hr\":\"#E73B2D\",\"submit_btn_transition_duration\":0.3,\"submit_btn_typography_typography\":\"custom\",\"submit_btn_typography_font_family\":\"Poppins\",\"submit_btn_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"submit_btn_typography_font_weight\":\"400\",\"submit_btn_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wpr-forms\"}],\"isInner\":false}],\"isInner\":false}]'),(3522,2504,'_elementor_page_assets','a:0:{}'),(3523,2504,'_elementor_pro_version','3.7.7'),(3524,2504,'_elementor_css','a:6:{s:4:\"time\";i:1697721897;s:5:\"fonts\";a:1:{i:0;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:\"\";}'),(3525,2505,'_elementor_edit_mode','builder'),(3526,2505,'_elementor_template_type','wp-page'),(3527,2505,'_elementor_version','3.16.6'),(3528,2505,'_wp_page_template','elementor_canvas'),(3529,2505,'_elementor_data','[{\"id\":\"90e493b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"8bb8313\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"4859bea\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]}},\"elements\":[{\"id\":\"0888320\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"ee74267\",\"elType\":\"widget\",\"settings\":{\"plugin_select\":\"cf-7\",\"cf7_templates\":\"1785\",\"input_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"input_textarea_height\":{\"unit\":\"px\",\"size\":168,\"sizes\":[]},\"label_color\":\"#777777\",\"input_color\":\"#222222\",\"input_placeholder_color\":\"#222222\",\"input_transition_duration\":0.3,\"input_typography_typography\":\"custom\",\"input_typography_font_family\":\"Poppins\",\"input_typography_font_weight\":\"400\",\"input_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"submit_btn_align\":\"justify\",\"submit_btn_bg_color_background\":\"classic\",\"submit_btn_bg_color_color\":\"#FF4F40\",\"submit_btn_color\":\"#FFFFFF\",\"submit_btn_border_color\":\"#FF4F40\",\"read_more_bg_color_hr_background\":\"classic\",\"read_more_bg_color_hr_color\":\"#E73B2D\",\"submit_btn_border_color_hr\":\"#E73B2D\",\"submit_btn_transition_duration\":0.3,\"submit_btn_typography_typography\":\"custom\",\"submit_btn_typography_font_family\":\"Poppins\",\"submit_btn_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"submit_btn_typography_font_weight\":\"400\",\"submit_btn_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wpr-forms\"}],\"isInner\":false}],\"isInner\":false}]'),(3530,2505,'_elementor_page_assets','a:0:{}'),(3531,2505,'_elementor_pro_version','3.7.7'),(3532,2505,'_elementor_css','a:6:{s:4:\"time\";i:1697721897;s:5:\"fonts\";a:1:{i:0;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:\"\";}'),(3534,2506,'_elementor_edit_mode','builder'),(3535,2506,'_elementor_template_type','wp-page'),(3536,2506,'_elementor_version','3.16.6'),(3537,2506,'_wp_page_template','elementor_canvas'),(3538,2506,'_elementor_data','[{\"id\":\"90e493b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"8bb8313\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"4859bea\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]}},\"elements\":[{\"id\":\"0888320\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"ee74267\",\"elType\":\"widget\",\"settings\":{\"plugin_select\":\"cf-7\",\"cf7_templates\":\"1785\",\"input_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"input_textarea_height\":{\"unit\":\"px\",\"size\":168,\"sizes\":[]},\"label_color\":\"#777777\",\"input_color\":\"#222222\",\"input_placeholder_color\":\"#222222\",\"input_transition_duration\":0.3,\"input_typography_typography\":\"custom\",\"input_typography_font_family\":\"Poppins\",\"input_typography_font_weight\":\"400\",\"input_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"submit_btn_align\":\"justify\",\"submit_btn_bg_color_background\":\"classic\",\"submit_btn_bg_color_color\":\"#FF4F40\",\"submit_btn_color\":\"#FFFFFF\",\"submit_btn_border_color\":\"#FF4F40\",\"read_more_bg_color_hr_background\":\"classic\",\"read_more_bg_color_hr_color\":\"#E73B2D\",\"submit_btn_border_color_hr\":\"#E73B2D\",\"submit_btn_transition_duration\":0.3,\"submit_btn_typography_typography\":\"custom\",\"submit_btn_typography_font_family\":\"Poppins\",\"submit_btn_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"submit_btn_typography_font_weight\":\"400\",\"submit_btn_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wpr-forms\"}],\"isInner\":false}],\"isInner\":false}]'),(3539,2506,'_elementor_page_assets','a:0:{}'),(3540,2506,'_elementor_pro_version','3.7.7'),(3541,2506,'_elementor_css','a:6:{s:4:\"time\";i:1697722076;s:5:\"fonts\";a:1:{i:0;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:\"\";}'),(3542,2507,'_elementor_edit_mode','builder'),(3543,2507,'_elementor_template_type','wp-page'),(3544,2507,'_elementor_version','3.16.6'),(3545,2507,'_wp_page_template','elementor_canvas'),(3546,2507,'_elementor_data','[{\"id\":\"90e493b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"8bb8313\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"4859bea\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]}},\"elements\":[{\"id\":\"0888320\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"ee74267\",\"elType\":\"widget\",\"settings\":{\"plugin_select\":\"cf-7\",\"cf7_templates\":\"1785\",\"input_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"input_textarea_height\":{\"unit\":\"px\",\"size\":168,\"sizes\":[]},\"label_color\":\"#777777\",\"input_color\":\"#222222\",\"input_placeholder_color\":\"#222222\",\"input_transition_duration\":0.3,\"input_typography_typography\":\"custom\",\"input_typography_font_family\":\"Poppins\",\"input_typography_font_weight\":\"400\",\"input_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"submit_btn_align\":\"justify\",\"submit_btn_bg_color_background\":\"classic\",\"submit_btn_bg_color_color\":\"#FF4F40\",\"submit_btn_color\":\"#FFFFFF\",\"submit_btn_border_color\":\"#FF4F40\",\"read_more_bg_color_hr_background\":\"classic\",\"read_more_bg_color_hr_color\":\"#E73B2D\",\"submit_btn_border_color_hr\":\"#E73B2D\",\"submit_btn_transition_duration\":0.3,\"submit_btn_typography_typography\":\"custom\",\"submit_btn_typography_font_family\":\"Poppins\",\"submit_btn_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"submit_btn_typography_font_weight\":\"400\",\"submit_btn_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wpr-forms\"}],\"isInner\":false}],\"isInner\":false}]'),(3547,2507,'_elementor_page_assets','a:0:{}'),(3548,2507,'_elementor_pro_version','3.7.7'),(3549,2507,'_elementor_css','a:6:{s:4:\"time\";i:1697722076;s:5:\"fonts\";a:1:{i:0;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:\"\";}'),(3550,2508,'_elementor_edit_mode','builder'),(3551,2508,'_elementor_template_type','wp-page'),(3552,2508,'_elementor_version','3.16.6'),(3553,2508,'_wp_page_template','elementor_canvas'),(3554,2508,'_elementor_data','[{\"id\":\"90e493b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"8bb8313\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"4859bea\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]}},\"elements\":[{\"id\":\"0888320\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"ee74267\",\"elType\":\"widget\",\"settings\":{\"plugin_select\":\"cf-7\",\"cf7_templates\":\"1785\",\"input_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"input_textarea_height\":{\"unit\":\"px\",\"size\":168,\"sizes\":[]},\"label_color\":\"#000000\",\"input_color\":\"#222222\",\"input_placeholder_color\":\"#222222\",\"input_transition_duration\":0.3,\"input_typography_typography\":\"custom\",\"input_typography_font_family\":\"Poppins\",\"input_typography_font_weight\":\"400\",\"input_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"submit_btn_align\":\"justify\",\"submit_btn_bg_color_background\":\"classic\",\"submit_btn_bg_color_color\":\"#FF4F40\",\"submit_btn_color\":\"#FFFFFF\",\"submit_btn_border_color\":\"#FF4F40\",\"read_more_bg_color_hr_background\":\"classic\",\"read_more_bg_color_hr_color\":\"#E73B2D\",\"submit_btn_border_color_hr\":\"#E73B2D\",\"submit_btn_transition_duration\":0.3,\"submit_btn_typography_typography\":\"custom\",\"submit_btn_typography_font_family\":\"Poppins\",\"submit_btn_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"submit_btn_typography_font_weight\":\"400\",\"submit_btn_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"wpr-forms\"}],\"isInner\":false}],\"isInner\":false}]'),(3555,2508,'_elementor_page_assets','a:0:{}'),(3556,2508,'_elementor_pro_version','3.7.7'),(3557,2508,'_elementor_css','a:6:{s:4:\"time\";i:1697722076;s:5:\"fonts\";a:1:{i:0;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:\"\";}'),(3558,1160,'_elementor_css','a:6:{s:4:\"time\";i:1697722118;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:1;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:\"\";}'),(3559,2509,'_edit_lock','1697723955:1'),(3560,2509,'_edit_last','1'),(3561,2509,'_wp_page_template','default'),(3562,2509,'_elementor_edit_mode','builder'),(3563,2509,'_elementor_template_type','wp-page'),(3564,2509,'_elementor_version','3.16.6'),(3565,2509,'_elementor_pro_version','3.7.7'),(3566,2511,'_wp_page_template','default'),(3567,2511,'_elementor_edit_mode','builder'),(3568,2511,'_elementor_template_type','wp-page'),(3569,2511,'_elementor_version','3.16.6'),(3570,2511,'_elementor_pro_version','3.7.7'),(3571,2512,'_wp_page_template','default'),(3572,2512,'_elementor_edit_mode','builder'),(3573,2512,'_elementor_template_type','wp-page'),(3574,2512,'_elementor_version','3.16.6'),(3575,2512,'_elementor_pro_version','3.7.7'),(3576,2509,'_elementor_data','[{\"id\":\"11eb03e\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"8b8a7a2\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"0c626b2\"}],\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":0,\"bottom\":\"150\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"71b795e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3f1e79\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}],\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e752834\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"20a38a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2431,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/101.png\",\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}],\"image_custom_dimension\":{\"width\":\"1200\",\"height\":\"355\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bef63cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3577,2513,'_wp_page_template','default'),(3578,2513,'_elementor_edit_mode','builder'),(3579,2513,'_elementor_template_type','wp-page'),(3580,2513,'_elementor_version','3.16.6'),(3581,2513,'_elementor_pro_version','3.7.7'),(3582,2513,'_elementor_data','[{\"id\":\"11eb03e\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"8b8a7a2\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"0c626b2\"}],\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"71b795e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3f1e79\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}],\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e752834\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"20a38a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2431,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/101.png\",\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}],\"image_custom_dimension\":{\"width\":\"1200\",\"height\":\"355\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bef63cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3583,2509,'_elementor_page_assets','a:0:{}'),(3585,2514,'_wp_page_template','default'),(3586,2514,'_elementor_edit_mode','builder'),(3587,2514,'_elementor_template_type','wp-page'),(3588,2514,'_elementor_version','3.16.6'),(3589,2514,'_elementor_pro_version','3.7.7'),(3590,2514,'_elementor_data','[{\"id\":\"11eb03e\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"8b8a7a2\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"0c626b2\"}],\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"71b795e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3f1e79\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}],\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e752834\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"20a38a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2431,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/101.png\",\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}],\"image_custom_dimension\":{\"width\":\"1200\",\"height\":\"355\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bef63cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3591,2514,'_elementor_page_assets','a:0:{}'),(3592,2514,'_elementor_css','a:6:{s:4:\"time\";i:1697723615;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;s:0:\"\";}'),(3593,2515,'_wp_page_template','default'),(3594,2515,'_elementor_edit_mode','builder'),(3595,2515,'_elementor_template_type','wp-page'),(3596,2515,'_elementor_version','3.16.6'),(3597,2515,'_elementor_pro_version','3.7.7'),(3598,2515,'_elementor_data','[{\"id\":\"11eb03e\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"8b8a7a2\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"0c626b2\"}],\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"71b795e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3f1e79\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}],\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e752834\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"20a38a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2431,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/101.png\",\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}],\"image_custom_dimension\":{\"width\":\"1200\",\"height\":\"355\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bef63cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3599,2515,'_elementor_page_assets','a:0:{}'),(3600,2515,'_elementor_css','a:6:{s:4:\"time\";i:1697723615;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;s:0:\"\";}'),(3601,2516,'_wp_page_template','default'),(3602,2516,'_elementor_edit_mode','builder'),(3603,2516,'_elementor_template_type','wp-page'),(3604,2516,'_elementor_version','3.16.6'),(3605,2516,'_elementor_pro_version','3.7.7'),(3606,2516,'_elementor_data','[{\"id\":\"11eb03e\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"8b8a7a2\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"0c626b2\"}],\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":0,\"bottom\":\"150\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"71b795e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3f1e79\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}],\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e752834\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"20a38a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2431,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/101.png\",\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}],\"image_custom_dimension\":{\"width\":\"1200\",\"height\":\"355\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bef63cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3607,2516,'_elementor_page_assets','a:0:{}'),(3608,2516,'_elementor_css','a:6:{s:4:\"time\";i:1697723615;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;s:0:\"\";}'),(3609,2509,'_elementor_css','a:6:{s:4:\"time\";i:1697723632;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;s:0:\"\";}'),(3610,2517,'_wp_page_template','default'),(3611,2517,'_elementor_edit_mode','builder'),(3612,2517,'_elementor_template_type','wp-page'),(3613,2517,'_elementor_version','3.16.6'),(3614,2517,'_elementor_pro_version','3.7.7'),(3615,2517,'_elementor_data','[{\"id\":\"11eb03e\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"8b8a7a2\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"0c626b2\"}],\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":0,\"bottom\":\"150\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"71b795e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3f1e79\",\"elType\":\"section\",\"settings\":{\"css_classes\":\"main-banner-area\",\"gap\":\"no\",\"eael_parallax_layers_list\":[],\"eael_cl_logics\":[{\"_id\":\"86dcb51\"}],\"bg_image\":{\"id\":2165,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_id\":\"a57bcdb\",\"repeater_bg_image\":{\"id\":2166,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_id\":\"9ff6d01\",\"repeater_bg_image\":{\"id\":2167,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"}}],\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e752834\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"flex-end\",\"css_classes\":\"banner-image-area\",\"content_position\":\"center\",\"eael_cl_logics\":[{\"_id\":\"e9ccca9\"}]},\"elements\":[{\"id\":\"20a38a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2431,\"url\":\"https:\\/\\/wordpressdemo.subscriptionflow.com\\/wp-content\\/uploads\\/2023\\/01\\/101.png\",\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"46b9ed4\"}],\"image_custom_dimension\":{\"width\":\"1200\",\"height\":\"355\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bef63cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Your Request Has Been Received.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"eael_cl_logics\":[{\"_id\":\"e2d9fee\"}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3616,2517,'_elementor_page_assets','a:0:{}'),(3617,2517,'_elementor_css','a:6:{s:4:\"time\";i:1697723632;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;s:0:\"\";}'),(3620,6,'migrate_from_cf7_redirect','1'),(3621,1785,'migrate_from_cf7_redirect','1'),(3622,2519,'wpcf7_id','1785'),(3623,2519,'wpcf7_rule_id','default'),(3624,2519,'action_type','redirect'),(3626,2519,'post_title','New Action'),(3633,2519,'page_id','2509'),(3634,2519,'external_url',''),(3635,2519,'http_build_query_selectively_fields',''),(3636,2519,'delay_redirect_seconds',''),(3637,2519,'action_status','on'),(3638,2520,'_menu_item_type','post_type'),(3639,2520,'_menu_item_menu_item_parent','0'),(3640,2520,'_menu_item_object_id','1160'),(3641,2520,'_menu_item_object','page'),(3642,2520,'_menu_item_target',''),(3643,2520,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3644,2520,'_menu_item_xfn',''),(3645,2520,'_menu_item_url',''),(3647,2370,'_wp_old_date','2023-01-10'),(3648,2523,'_order_key','wc_order_IO2idBuALiBMO'),(3649,2523,'_customer_user','0'),(3650,2523,'_payment_method','paystack'),(3651,2523,'_payment_method_title','Debit/Credit Cards'),(3652,2523,'_customer_ip_address','102.223.45.90'),(3653,2523,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36'),(3654,2523,'_created_via','checkout'),(3655,2523,'_cart_hash','b1ad8a0cd4ba87dfae856c1cab8daeb7'),(3656,2523,'_download_permissions_granted','no'),(3657,2523,'_recorded_sales','no'),(3658,2523,'_recorded_coupon_usage_counts','no'),(3659,2523,'_new_order_email_sent','false'),(3660,2523,'_order_stock_reduced','no'),(3661,2523,'_billing_first_name','Sybil'),(3662,2523,'_billing_last_name','Christensen'),(3663,2523,'_billing_company','Boone Henderson Associates'),(3664,2523,'_billing_address_1','19 Clarendon Street'),(3665,2523,'_billing_address_2','Et eum consequatur'),(3666,2523,'_billing_city','Impedit porro error'),(3667,2523,'_billing_state','FS'),(3668,2523,'_billing_postcode','18946'),(3669,2523,'_billing_country','SY'),(3670,2523,'_billing_email','gesetap@mailinator.com'),(3671,2523,'_billing_phone','+1 (326) 756-8151'),(3672,2523,'_order_currency','ZAR'),(3673,2523,'_cart_discount','0'),(3674,2523,'_cart_discount_tax','0'),(3675,2523,'_order_shipping','0'),(3676,2523,'_order_shipping_tax','0'),(3677,2523,'_order_tax','0'),(3678,2523,'_order_total','75.00'),(3679,2523,'_order_version','8.2.1'),(3680,2523,'_prices_include_tax','no'),(3681,2523,'_billing_address_index','Sybil Christensen Boone Henderson Associates 19 Clarendon Street Et eum consequatur Impedit porro error FS 18946 SY gesetap@mailinator.com +1 (326) 756-8151'),(3682,2523,'_shipping_address_index',' '),(3684,2523,'_paystack_txn_ref','2523_1700576439'),(3685,2523,'is_vat_exempt','no'),(3686,2524,'_order_key','wc_order_bEpia5YagTZqg'),(3687,2524,'_customer_user','0'),(3688,2524,'_payment_method','paystack'),(3689,2524,'_payment_method_title','Debit/Credit Cards'),(3690,2524,'_customer_ip_address','102.223.45.90'),(3691,2524,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0'),(3692,2524,'_created_via','checkout'),(3693,2524,'_cart_hash','b1ad8a0cd4ba87dfae856c1cab8daeb7'),(3694,2524,'_download_permissions_granted','no'),(3695,2524,'_recorded_sales','no'),(3696,2524,'_recorded_coupon_usage_counts','no'),(3697,2524,'_new_order_email_sent','false'),(3698,2524,'_order_stock_reduced','no'),(3699,2524,'_billing_first_name','TEST'),(3700,2524,'_billing_last_name','TEST'),(3701,2524,'_billing_address_1','Test'),(3702,2524,'_billing_address_2','test'),(3703,2524,'_billing_city','captown'),(3704,2524,'_billing_state','FS'),(3705,2524,'_billing_postcode','34453'),(3706,2524,'_billing_country','ZA'),(3707,2524,'_billing_email','test@gmail.com'),(3708,2524,'_billing_phone','34343535345'),(3709,2524,'_order_currency','ZAR'),(3710,2524,'_cart_discount','0'),(3711,2524,'_cart_discount_tax','0'),(3712,2524,'_order_shipping','0'),(3713,2524,'_order_shipping_tax','0'),(3714,2524,'_order_tax','0'),(3715,2524,'_order_total','75.00'),(3716,2524,'_order_version','8.2.1'),(3717,2524,'_prices_include_tax','no'),(3718,2524,'_billing_address_index','TEST TEST Test test captown FS 34453 ZA test@gmail.com 34343535345'),(3719,2524,'_shipping_address_index',' '),(3720,2524,'is_vat_exempt','no'),(3721,2524,'_paystack_txn_ref','2524_1700576776'),(3722,2525,'_order_key','wc_order_8U6CmbhzDv0Rh'),(3723,2525,'_customer_user','0'),(3724,2525,'_payment_method','paystack'),(3725,2525,'_payment_method_title','Debit/Credit Cards'),(3726,2525,'_customer_ip_address','119.73.117.18'),(3727,2525,'_customer_user_agent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36'),(3728,2525,'_created_via','checkout'),(3729,2525,'_cart_hash','b1ad8a0cd4ba87dfae856c1cab8daeb7'),(3730,2525,'_download_permissions_granted','no'),(3731,2525,'_recorded_sales','no'),(3732,2525,'_recorded_coupon_usage_counts','no'),(3733,2525,'_new_order_email_sent','false'),(3734,2525,'_order_stock_reduced','no'),(3735,2525,'_billing_first_name','Shana'),(3736,2525,'_billing_last_name','Dejesus'),(3737,2525,'_billing_company','Graves David LLC'),(3738,2525,'_billing_address_1','89 South Rocky First Parkway'),(3739,2525,'_billing_address_2','Voluptatum debitis c'),(3740,2525,'_billing_city','Quas sint cupiditate'),(3741,2525,'_billing_state','FS'),(3742,2525,'_billing_postcode','14209'),(3743,2525,'_billing_country','ZA'),(3744,2525,'_billing_email','tomufynata@mailinator.com'),(3745,2525,'_billing_phone','+1 (368) 714-4324'),(3746,2525,'_order_currency','ZAR'),(3747,2525,'_cart_discount','0'),(3748,2525,'_cart_discount_tax','0'),(3749,2525,'_order_shipping','0'),(3750,2525,'_order_shipping_tax','0'),(3751,2525,'_order_tax','0'),(3752,2525,'_order_total','75.00'),(3753,2525,'_order_version','8.2.1'),(3754,2525,'_prices_include_tax','no'),(3755,2525,'_billing_address_index','Shana Dejesus Graves David LLC 89 South Rocky First Parkway Voluptatum debitis c Quas sint cupiditate FS 14209 ZA tomufynata@mailinator.com +1 (368) 714-4324'),(3756,2525,'_shipping_address_index',' '),(3758,2525,'_paystack_txn_ref','2525_1700642511'),(3759,2525,'is_vat_exempt','no'),(3760,2526,'_order_key','wc_order_T2La4QrBbn4wE'),(3761,2526,'_customer_user','0'),(3762,2526,'_payment_method','paystack'),(3763,2526,'_payment_method_title','Debit/Credit Cards'),(3764,2526,'_customer_ip_address','119.73.117.18'),(3765,2526,'_customer_user_agent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36'),(3766,2526,'_created_via','checkout'),(3767,2526,'_cart_hash','9aba306322b8827f564cf046bf620862'),(3768,2526,'_download_permissions_granted','no'),(3769,2526,'_recorded_sales','no'),(3770,2526,'_recorded_coupon_usage_counts','no'),(3771,2526,'_new_order_email_sent','false'),(3772,2526,'_order_stock_reduced','no'),(3773,2526,'_billing_first_name','Shana'),(3774,2526,'_billing_last_name','Dejesus'),(3775,2526,'_billing_company','Graves David LLC'),(3776,2526,'_billing_address_1','89 South Rocky First Parkway'),(3777,2526,'_billing_address_2','Voluptatum debitis c'),(3778,2526,'_billing_city','Quas sint cupiditate'),(3779,2526,'_billing_state','FS'),(3780,2526,'_billing_postcode','14209'),(3781,2526,'_billing_country','ZA'),(3782,2526,'_billing_email','tomufynata@mailinator.com'),(3783,2526,'_billing_phone','+1 (368) 714-4324'),(3784,2526,'_order_currency','ZAR'),(3785,2526,'_cart_discount','0'),(3786,2526,'_cart_discount_tax','0'),(3787,2526,'_order_shipping','0'),(3788,2526,'_order_shipping_tax','0'),(3789,2526,'_order_tax','0'),(3790,2526,'_order_total','150.00'),(3791,2526,'_order_version','8.2.1'),(3792,2526,'_prices_include_tax','no'),(3793,2526,'_billing_address_index','Shana Dejesus Graves David LLC 89 South Rocky First Parkway Voluptatum debitis c Quas sint cupiditate FS 14209 ZA tomufynata@mailinator.com +1 (368) 714-4324'),(3794,2526,'_shipping_address_index',' '),(3795,2526,'is_vat_exempt','no'),(3796,2526,'_paystack_txn_ref','2526_1700649616'),(3797,2527,'_order_key','wc_order_jEcoXIEneT6Rq'),(3798,2527,'_customer_user','0'),(3799,2527,'_payment_method','paystack'),(3800,2527,'_payment_method_title','Debit/Credit Cards'),(3801,2527,'_customer_ip_address','102.223.45.90'),(3802,2527,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36'),(3803,2527,'_created_via','checkout'),(3804,2527,'_cart_hash','b1ad8a0cd4ba87dfae856c1cab8daeb7'),(3805,2527,'_download_permissions_granted','no'),(3806,2527,'_recorded_sales','no'),(3807,2527,'_recorded_coupon_usage_counts','no'),(3808,2527,'_new_order_email_sent','false'),(3809,2527,'_order_stock_reduced','no'),(3810,2527,'_billing_first_name','Fitzgerald'),(3811,2527,'_billing_last_name','Jenkins'),(3812,2527,'_billing_company','Horne Padilla Co'),(3813,2527,'_billing_address_1','46 West Green Hague Lane'),(3814,2527,'_billing_address_2','Minus magnam ea fugi'),(3815,2527,'_billing_city','Occaecat quam accusa'),(3816,2527,'_billing_postcode','21494'),(3817,2527,'_billing_country','GP'),(3818,2527,'_billing_email','jynu@mailinator.com'),(3819,2527,'_billing_phone','+1 (153) 572-7539'),(3820,2527,'_order_currency','ZAR'),(3821,2527,'_cart_discount','0'),(3822,2527,'_cart_discount_tax','0'),(3823,2527,'_order_shipping','0'),(3824,2527,'_order_shipping_tax','0'),(3825,2527,'_order_tax','0'),(3826,2527,'_order_total','75.00'),(3827,2527,'_order_version','8.2.1'),(3828,2527,'_prices_include_tax','no'),(3829,2527,'_billing_address_index','Fitzgerald Jenkins Horne Padilla Co 46 West Green Hague Lane Minus magnam ea fugi Occaecat quam accusa 21494 GP jynu@mailinator.com +1 (153) 572-7539'),(3830,2527,'_shipping_address_index',' '),(3831,2527,'is_vat_exempt','no'),(3832,2527,'_paystack_txn_ref','2527_1700829926'),(3833,2529,'_edit_lock','1701430239:1'),(3834,2529,'_edit_last','1'),(3835,2529,'_wp_page_template','default'),(3836,2529,'_elementor_edit_mode','builder'),(3837,2529,'_elementor_template_type','wp-page'),(3838,2529,'_elementor_version','3.16.6'),(3839,2529,'_elementor_pro_version','3.7.7'),(3840,2531,'_form','<label> First Name*\n [text* first-name placeholder \"Type your name\"] </label>\n\n<label> Last Name*\n [text* last-name placeholder \"Type your name\"] </label>\n\n<label> Phone*\n [text* phone placeholder \"Type your phone\"] </label>\n\n<label>Email\n [email* email placeholder \"Type your email\"] </label>\n\n<label> Address*\n [text* address placeholder \"Type your address\"] </label>\n\n<label for=\"country\">\n Country* [select* country first_as_label \"Please select\" \"Afghanistan\" \"Albania\" \"Algeria\" \"Andorra\" \"Angola\" \"Antigua & Barbuda\" \"Argentina\" \"Armenia\" \"Australia\" \"Austria\" \"Azerbaijan\" \"Bahamas\" \"Bahrain\" \"Bangladesh\" \"Barbados\" \"Belarus\" \"Belgium\" \"Belize\" \"Benin\" \"Bhutan\" \"Bolivia\" \"Bosnia & Herzegovina\" \"Botswana\" \"Brazil\" \"Brunei\" \"Bulgaria\" \"Burkina Faso\" \"Burundi\" \"Cambodia\" \"Cameroon\" \"Canada\" \"Cape Verde\" \"Central African Republic\" \"Chad\" \"Chile\" \"China\" \"Colombia\" \"Comoros\" \"Congo\" \"Congo Democratic Republic\" \"Costa Rica\" \"Cote d\'Ivoire\" \"Croatia\" \"Cuba\" \"Cyprus\" \"Czech Republic\" \"Denmark\" \"Djibouti\" \"Dominica\" \"Dominican Republic\" \"Ecuador\" \"East Timor\" \"Egypt\" \"El Salvador\" \"Equatorial Guinea\" \"Eritrea\" \"Estonia\" \"Ethiopia\" \"Fiji\" \"Finland\" \"France\" \"Gabon\" \"Gambia\" \"Georgia\" \"Germany\" \"Ghana\" \"Greece\" \"Grenada\" \"Guatemala\" \"Guinea\" \"Guinea-Bissau\" \"Guyana\" \"Haiti\" \"Honduras\" \"Hungary\" \"Iceland\" \"India\" \"Indonesia\" \"Iran\" \"Iraq\" \"Ireland\" \"Israel\" \"Italy\" \"Jamaica\" \"Japan\" \"Jordan\" \"Kazakhstan\" \"Kenya\" \"Kiribati\" \"Korea North\" \"Korea South\" \"Kosovo\" \"Kuwait\" \"Kyrgyzstan\" \"Laos\" \"Latvia\" \"Lebanon\" \"Lesotho\" \"Liberia\" \"Libya\" \"Liechtenstein\" \"Lithuania\" \"Luxembourg\" \"Macedonia\" \"Madagascar\" \"Malawi\" \"Malaysia\" \"Maldives\" \"Mali\" \"Malta\" \"Marshall Islands\" \"Mauritania\" \"Mauritius\" \"Mexico\" \"Micronesia\" \"Moldova\" \"Monaco\" \"Mongolia\" \"Montenegro\" \"Morocco\" \"Mozambique\" \"Myanmar (Burma)\" \"Namibia\" \"Nauru\" \"Nepal\" \"The Netherlands\" \"New Zealand\" \"Nicaragua\" \"Niger\" \"Nigeria\" \"Norway\" \"Oman\" \"Pakistan\" \"Palau\" \"Palestinian State*\" \"Panama\" \"Papua New Guinea\" \"Paraguay\" \"Peru\" \"The Philippines\" \"Poland\" \"Portugal\" \"Qatar\" \"Romania\" \"Russia\" \"Rwanda\" \"St. Kitts & Nevis\" \"St. Lucia\" \"St. Vincent & The Grenadines\" \"Samoa\" \"San Marino\" \"Sao Tome & Principe\" \"Saudi Arabia\" \"Senegal\" \"Serbia\" \"Seychelles\" \"Sierra Leone\" \"Singapore\" \"Slovakia\" \"Slovenia\" \"Solomon Islands\" \"Somalia\" \"South Africa\" \"South Sudan\" \"Spain\" \"Sri Lanka\" \"Sudan\" \"Suriname\" \"Swaziland\" \"Sweden\" \"Switzerland\" \"Syria\" \"Taiwan\" \"Tajikistan\" \"Tanzania\" \"Thailand\" \"Togo\" \"Tonga\" \"Trinidad & Tobago\" \"Tunisia\" \"Turkey\" \"Turkmenistan\" \"Tuvalu\" \"Uganda\" \"Ukraine\" \"United Arab Emirates\" \"United Kingdom\" \"United States of America\" \"Uruguay\" \"Uzbekistan\" \"Vanuatu\" \"Vatican City (Holy See)\" \"Venezuela\" \"Vietnam\" \"Yemen\" \"Zambia\" \"Zimbabwe\"]\n</label>\n\n\n<label> City*\n [text* city placeholder \"Type your city\"] </label>\n\n<label for=\"state\">\nState* <select class=\"wpcf7-form-control wpcf7-select wpcf7-validates-as-required\" aria-required=\"true\" aria-invalid=\"true\" name=\"state\">\n <option value=\"AL\">Alabama</option>\n <option value=\"AK\">Alaska</option>\n <option value=\"AS\">American Samoa</option>\n <option value=\"AZ\">Arizona</option>\n <option value=\"AR\">Arkansas</option>\n <option value=\"CA\">California</option>\n <option value=\"CO\">Colorado</option>\n <option value=\"CT\">Connecticut</option>\n <option value=\"DE\">Delaware</option>\n <option value=\"DC\">District Of Columbia</option>\n <option value=\"FM\">Federated States Of Micronesia</option>\n <option value=\"FL\">Florida</option>\n <option value=\"GA\">Georgia</option>\n <option value=\"GU\">Guam</option>\n <option value=\"HI\">Hawaii</option>\n <option value=\"ID\">Idaho</option>\n <option value=\"IL\">Illinois</option>\n <option value=\"IN\">Indiana</option>\n <option value=\"IA\">Iowa</option>\n <option value=\"KS\">Kansas</option>\n <option value=\"KY\">Kentucky</option>\n <option value=\"LA\">Louisiana</option>\n <option value=\"ME\">Maine</option>\n <option value=\"MH\">Marshall Islands</option>\n <option value=\"MD\">Maryland</option>\n <option value=\"MA\">Massachusetts</option>\n <option value=\"MI\">Michigan</option>\n <option value=\"MN\">Minnesota</option>\n <option value=\"MS\">Mississippi</option>\n <option value=\"MO\">Missouri</option>\n <option value=\"MT\">Montana</option>\n <option value=\"NE\">Nebraska</option>\n <option value=\"NV\">Nevada</option>\n <option value=\"NH\">New Hampshire</option>\n <option value=\"NJ\">New Jersey</option>\n <option value=\"NM\">New Mexico</option>\n <option value=\"NY\">New York</option>\n <option value=\"NC\">North Carolina</option>\n <option value=\"ND\">North Dakota</option>\n <option value=\"MP\">Northern Mariana Islands</option>\n <option value=\"OH\">Ohio</option>\n <option value=\"OK\">Oklahoma</option>\n <option value=\"OR\">Oregon</option>\n <option value=\"PW\">Palau</option>\n <option value=\"PA\">Pennsylvania</option>\n <option value=\"PR\">Puerto Rico</option>\n <option value=\"RI\">Rhode Island</option>\n <option value=\"SC\">South Carolina</option>\n <option value=\"SD\">South Dakota</option>\n <option value=\"TN\">Tennessee</option>\n <option value=\"TX\">Texas</option>\n <option value=\"UT\">Utah</option>\n <option value=\"VT\">Vermont</option>\n <option value=\"VI\">Virgin Islands</option>\n <option value=\"VA\">Virginia</option>\n <option value=\"WA\">Washington</option>\n <option value=\"WV\">West Virginia</option>\n <option value=\"WI\">Wisconsin</option>\n <option value=\"WY\">Wyoming</option>\n</select>\n</label>\n\n<label> Zip*\n [text* zip placeholder \"Type your Zip\"] </label>\n\n[submit \"Rush my order\"]'),(3841,2531,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:60:\"[_site_title] <wordpress@wordpressdemo.subscriptionflow.com>\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:4:\"body\";s:191:\"From: [your-name] [your-email]\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis is a notification that a contact form was submitted on your website ([_site_title] [_site_url]).\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(3842,2531,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:60:\"[_site_title] <wordpress@wordpressdemo.subscriptionflow.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:220:\"Message Body:\n[your-message]\n\n-- \nThis email is a receipt for your contact form submission on our website ([_site_title] [_site_url]) in which your email address was used. If that was not you, please ignore this message.\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(3843,2531,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:27:\"Please fill out this field.\";s:16:\"invalid_too_long\";s:32:\"This field has a too long input.\";s:17:\"invalid_too_short\";s:33:\"This field has a too short input.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:31:\"The uploaded file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:13:\"invalid_email\";s:30:\"Please enter an email address.\";s:11:\"invalid_url\";s:19:\"Please enter a URL.\";s:11:\"invalid_tel\";s:32:\"Please enter a telephone number.\";s:12:\"invalid_date\";s:41:\"Please enter a date in YYYY-MM-DD format.\";s:14:\"date_too_early\";s:32:\"This field has a too early date.\";s:13:\"date_too_late\";s:31:\"This field has a too late date.\";s:14:\"invalid_number\";s:22:\"Please enter a number.\";s:16:\"number_too_small\";s:34:\"This field has a too small number.\";s:16:\"number_too_large\";s:34:\"This field has a too large number.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";}'),(3844,2531,'_additional_settings','skip_mail: on'),(3845,2531,'_locale','en_US'),(3846,2531,'_hash','712a0b19ce77c990e51d173bb5aa2b21b7bb6562'),(3848,2531,'cf7s_style',''),(3849,2532,'_wp_page_template','default'),(3850,2532,'_elementor_edit_mode','builder'),(3851,2532,'_elementor_template_type','wp-page'),(3852,2532,'_elementor_version','3.16.6'),(3853,2532,'_elementor_pro_version','3.7.7'),(3854,2533,'_wp_page_template','default'),(3855,2533,'_elementor_edit_mode','builder'),(3856,2533,'_elementor_template_type','wp-page'),(3857,2533,'_elementor_version','3.16.6'),(3858,2533,'_elementor_pro_version','3.7.7'),(3859,2529,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"2531\\\" title=\\\"Payment Widget\\\"]\",\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform textarea,\\nform select,\\nform input[type=\\\"email\\\"] ,\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n padding: 0px 0px 0px;\\n margin: 10px 0px 0px;\\n}\\n\\nform p{\\n \\npadding: 10px 30px;\\nborder-bottom: 1px solid #E8E8F0;\\nmargin-bottom: 0px;\\n}\\n\\n\\nform [type=\\\"submit\\\"],\\nform [type=\\\"submit\\\"],\\nform [type=\\\"button\\\"],\\nform [type=\\\"button\\\"] {\\n color: #ffffff;\\n background-color: #605be5;\\n text-decoration: none;\\n width: 300px;\\n font-size: 20px\\n}\\n.wpcf7-form-control.wpcf7-select {\\n padding: 1px 18px 0px;\\n height: 37px;\\n}\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(3860,2534,'_wp_page_template','default'),(3861,2534,'_elementor_edit_mode','builder'),(3862,2534,'_elementor_template_type','wp-page'),(3863,2534,'_elementor_version','3.16.6'),(3864,2534,'_elementor_pro_version','3.7.7'),(3865,2534,'_elementor_data','[{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a4cba51\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"dynamic\":{\"active\":true},\"_id\":\"75314ff\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"a3a240e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"291dedf\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"info@demo.com\",\"email_subject\":\"New message from "SubscriptionFlow Demo"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@wordpressdemo.subscriptionflow.com\",\"email_from_name\":\"SubscriptionFlow Demo\",\"email_to_2\":\"info@demo.com\",\"email_subject_2\":\"New message from "SubscriptionFlow Demo"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@wordpressdemo.subscriptionflow.com\",\"email_from_name_2\":\"SubscriptionFlow Demo\",\"email_reply_to_2\":\"info@demo.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There's something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false}]'),(3866,2529,'_elementor_page_assets','a:0:{}'),(3868,2531,'cf7s_visual','a:6:{i:0;O:8:\"stdClass\":8:{s:8:\"cf7sType\";s:8:\"fieldset\";s:15:\"cf7sSelectLabel\";s:22:\"Fieldset (with legend)\";s:15:\"cf7sSelectGroup\";s:8:\"cf7sItem\";s:7:\"cf7Name\";s:12:\"fieldset-564\";s:9:\"cf7sLabel\";s:6:\"Legend\";s:8:\"cf7sIcon\";s:8:\"category\";s:8:\"expanded\";b:1;s:8:\"children\";a:2:{i:0;O:8:\"stdClass\":9:{s:8:\"cf7sType\";s:7:\"list-ol\";s:15:\"cf7sSelectLabel\";s:9:\"List - ol\";s:15:\"cf7sSelectGroup\";s:8:\"cf7sItem\";s:7:\"cf7Name\";s:11:\"list-ol-268\";s:9:\"cf7sLabel\";s:0:\"\";s:8:\"cf7sIcon\";s:9:\"editor-ol\";s:10:\"noChildren\";b:0;s:8:\"expanded\";b:1;s:8:\"children\";a:3:{i:0;O:8:\"stdClass\":9:{s:8:\"cf7sType\";s:7:\"list-li\";s:15:\"cf7sSelectLabel\";s:14:\"List Item - li\";s:15:\"cf7sSelectGroup\";s:8:\"cf7sItem\";s:7:\"cf7Name\";s:11:\"list-li-787\";s:9:\"cf7sLabel\";s:0:\"\";s:8:\"cf7sIcon\";s:9:\"editor-ul\";s:10:\"noChildren\";b:0;s:8:\"expanded\";b:1;s:8:\"children\";a:1:{i:0;O:8:\"stdClass\":14:{s:8:\"cf7sType\";s:4:\"text\";s:15:\"cf7sSelectLabel\";s:17:\"Text (short text)\";s:15:\"cf7sSelectGroup\";s:6:\"cf7Tag\";s:7:\"cf7Name\";s:8:\"text-160\";s:9:\"cf7sLabel\";s:20:\"Your Name (required)\";s:11:\"cf7Required\";b:1;s:13:\"cf7TagOptions\";a:3:{i:0;O:8:\"stdClass\":3:{s:9:\"cf7Option\";s:0:\"\";s:11:\"optionLabel\";s:13:\"Default value\";s:10:\"optionType\";s:5:\"input\";}i:1;O:8:\"stdClass\":4:{s:9:\"cf7Option\";s:11:\"placeholder\";s:9:\"isChecked\";b:0;s:11:\"optionLabel\";s:45:\"Use this text as the placeholder of the field\";s:10:\"optionType\";s:8:\"checkbox\";}i:2;O:8:\"stdClass\":4:{s:9:\"cf7Option\";s:20:\"akismet_author_email\";s:9:\"isChecked\";b:0;s:11:\"optionLabel\";s:52:\"Akismet - this field requires author\'s email address\";s:10:\"optionType\";s:8:\"checkbox\";}}s:9:\"cf7Values\";s:0:\"\";s:14:\"cf7Placeholder\";b:0;s:16:\"cf7AkismetAuthor\";b:0;s:14:\"cf7IdAttribute\";s:0:\"\";s:17:\"cf7ClassAttribute\";s:0:\"\";s:8:\"cf7sIcon\";s:16:\"editor-textcolor\";s:10:\"noChildren\";b:1;}}}i:1;O:8:\"stdClass\":9:{s:8:\"cf7sType\";s:7:\"list-li\";s:15:\"cf7sSelectLabel\";s:14:\"List Item - li\";s:15:\"cf7sSelectGroup\";s:8:\"cf7sItem\";s:7:\"cf7Name\";s:11:\"list-li-901\";s:9:\"cf7sLabel\";s:0:\"\";s:8:\"cf7sIcon\";s:9:\"editor-ul\";s:10:\"noChildren\";b:0;s:8:\"expanded\";b:1;s:8:\"children\";a:1:{i:0;O:8:\"stdClass\":14:{s:8:\"cf7sType\";s:5:\"email\";s:15:\"cf7sSelectLabel\";s:5:\"Email\";s:15:\"cf7sSelectGroup\";s:6:\"cf7Tag\";s:7:\"cf7Name\";s:9:\"email-810\";s:9:\"cf7sLabel\";s:24:\"Email Address (required)\";s:11:\"cf7Required\";b:1;s:13:\"cf7TagOptions\";a:3:{i:0;O:8:\"stdClass\":3:{s:9:\"cf7Option\";s:0:\"\";s:11:\"optionLabel\";s:13:\"Default value\";s:10:\"optionType\";s:5:\"input\";}i:1;O:8:\"stdClass\":4:{s:9:\"cf7Option\";s:11:\"placeholder\";s:9:\"isChecked\";b:0;s:11:\"optionLabel\";s:45:\"Use this text as the placeholder of the field\";s:10:\"optionType\";s:8:\"checkbox\";}i:2;O:8:\"stdClass\":4:{s:9:\"cf7Option\";s:20:\"akismet_author_email\";s:9:\"isChecked\";b:0;s:11:\"optionLabel\";s:52:\"Akismet - this field requires author\'s email address\";s:10:\"optionType\";s:8:\"checkbox\";}}s:9:\"cf7Values\";s:0:\"\";s:14:\"cf7Placeholder\";b:0;s:21:\"cf7AkismetAuthorEmail\";b:0;s:14:\"cf7IdAttribute\";s:0:\"\";s:17:\"cf7ClassAttribute\";s:0:\"\";s:8:\"cf7sIcon\";s:9:\"email-alt\";s:10:\"noChildren\";b:1;}}}i:2;O:8:\"stdClass\":9:{s:8:\"cf7sType\";s:7:\"list-li\";s:15:\"cf7sSelectLabel\";s:14:\"List Item - li\";s:15:\"cf7sSelectGroup\";s:8:\"cf7sItem\";s:7:\"cf7Name\";s:11:\"list-li-782\";s:9:\"cf7sLabel\";s:0:\"\";s:8:\"cf7sIcon\";s:9:\"editor-ul\";s:10:\"noChildren\";b:0;s:8:\"expanded\";b:1;s:8:\"children\";a:1:{i:0;O:8:\"stdClass\":13:{s:8:\"cf7sType\";s:8:\"textarea\";s:15:\"cf7sSelectLabel\";s:20:\"Textarea (long text)\";s:15:\"cf7sSelectGroup\";s:6:\"cf7Tag\";s:7:\"cf7Name\";s:12:\"textarea-171\";s:9:\"cf7sLabel\";s:12:\"Your Message\";s:11:\"cf7Required\";b:0;s:13:\"cf7TagOptions\";a:2:{i:0;O:8:\"stdClass\":3:{s:9:\"cf7Option\";s:0:\"\";s:11:\"optionLabel\";s:13:\"Default value\";s:10:\"optionType\";s:5:\"input\";}i:1;O:8:\"stdClass\":4:{s:9:\"cf7Option\";s:11:\"placeholder\";s:9:\"isChecked\";b:0;s:11:\"optionLabel\";s:45:\"Use this text as the placeholder of the field\";s:10:\"optionType\";s:8:\"checkbox\";}}s:9:\"cf7Values\";s:0:\"\";s:14:\"cf7Placeholder\";b:0;s:14:\"cf7IdAttribute\";s:0:\"\";s:17:\"cf7ClassAttribute\";s:0:\"\";s:8:\"cf7sIcon\";s:12:\"format-aside\";s:10:\"noChildren\";b:1;}}}}}i:1;O:8:\"stdClass\":7:{s:8:\"cf7sType\";s:9:\"paragraph\";s:15:\"cf7sSelectLabel\";s:13:\"Paragraph - p\";s:15:\"cf7sSelectGroup\";s:8:\"cf7sItem\";s:7:\"cf7Name\";s:13:\"paragraph-583\";s:11:\"cf7sContent\";s:10:\"* Required\";s:8:\"cf7sIcon\";s:16:\"editor-paragraph\";s:10:\"noChildren\";b:1;}}}i:1;O:8:\"stdClass\":11:{s:8:\"cf7sType\";s:6:\"submit\";s:15:\"cf7sSelectLabel\";s:6:\"Submit\";s:15:\"cf7sSelectGroup\";s:6:\"cf7Tag\";s:7:\"cf7Name\";s:10:\"submit-299\";s:9:\"cf7sLabel\";s:4:\"Send\";s:9:\"cf7Values\";s:0:\"\";s:11:\"cf7Required\";b:0;s:14:\"cf7IdAttribute\";s:0:\"\";s:17:\"cf7ClassAttribute\";s:0:\"\";s:8:\"cf7sIcon\";s:6:\"button\";s:10:\"noChildren\";b:1;}i:2;O:8:\"stdClass\":9:{s:8:\"cf7sType\";s:7:\"list-ol\";s:15:\"cf7sSelectLabel\";s:9:\"List - ol\";s:15:\"cf7sSelectGroup\";s:8:\"cf7sItem\";s:7:\"cf7Name\";s:11:\"list-ol-529\";s:9:\"cf7sLabel\";s:0:\"\";s:8:\"cf7sIcon\";s:9:\"editor-ol\";s:10:\"noChildren\";b:0;s:8:\"children\";a:1:{i:0;O:8:\"stdClass\":9:{s:8:\"cf7sType\";s:7:\"list-li\";s:15:\"cf7sSelectLabel\";s:14:\"List Item - li\";s:15:\"cf7sSelectGroup\";s:8:\"cf7sItem\";s:7:\"cf7Name\";s:11:\"list-li-819\";s:9:\"cf7sLabel\";s:0:\"\";s:8:\"cf7sIcon\";s:9:\"editor-ul\";s:10:\"noChildren\";b:0;s:8:\"children\";a:1:{i:0;O:8:\"stdClass\":14:{s:8:\"cf7sType\";s:5:\"email\";s:15:\"cf7sSelectLabel\";s:5:\"Email\";s:15:\"cf7sSelectGroup\";s:6:\"cf7Tag\";s:7:\"cf7Name\";s:9:\"email-854\";s:9:\"cf7sLabel\";s:24:\"Email Address (required)\";s:11:\"cf7Required\";b:1;s:13:\"cf7TagOptions\";a:3:{i:0;O:8:\"stdClass\":3:{s:9:\"cf7Option\";s:0:\"\";s:11:\"optionLabel\";s:13:\"Default value\";s:10:\"optionType\";s:5:\"input\";}i:1;O:8:\"stdClass\":4:{s:9:\"cf7Option\";s:11:\"placeholder\";s:9:\"isChecked\";b:0;s:11:\"optionLabel\";s:45:\"Use this text as the placeholder of the field\";s:10:\"optionType\";s:8:\"checkbox\";}i:2;O:8:\"stdClass\":4:{s:9:\"cf7Option\";s:20:\"akismet_author_email\";s:9:\"isChecked\";b:0;s:11:\"optionLabel\";s:52:\"Akismet - this field requires author\'s email address\";s:10:\"optionType\";s:8:\"checkbox\";}}s:9:\"cf7Values\";s:0:\"\";s:14:\"cf7Placeholder\";b:0;s:21:\"cf7AkismetAuthorEmail\";b:0;s:14:\"cf7IdAttribute\";s:0:\"\";s:17:\"cf7ClassAttribute\";s:0:\"\";s:8:\"cf7sIcon\";s:9:\"email-alt\";s:10:\"noChildren\";b:1;}}s:8:\"expanded\";b:1;}}s:8:\"expanded\";b:1;}i:3;O:8:\"stdClass\":9:{s:8:\"cf7sType\";s:7:\"list-ol\";s:15:\"cf7sSelectLabel\";s:9:\"List - ol\";s:15:\"cf7sSelectGroup\";s:8:\"cf7sItem\";s:7:\"cf7Name\";s:11:\"list-ol-779\";s:9:\"cf7sLabel\";s:0:\"\";s:8:\"cf7sIcon\";s:9:\"editor-ol\";s:10:\"noChildren\";b:0;s:8:\"children\";a:1:{i:0;O:8:\"stdClass\":9:{s:8:\"cf7sType\";s:7:\"list-li\";s:15:\"cf7sSelectLabel\";s:14:\"List Item - li\";s:15:\"cf7sSelectGroup\";s:8:\"cf7sItem\";s:7:\"cf7Name\";s:11:\"list-li-655\";s:9:\"cf7sLabel\";s:0:\"\";s:8:\"cf7sIcon\";s:9:\"editor-ul\";s:10:\"noChildren\";b:0;s:8:\"children\";a:1:{i:0;O:8:\"stdClass\":13:{s:8:\"cf7sType\";s:4:\"file\";s:15:\"cf7sSelectLabel\";s:13:\"File (upload)\";s:15:\"cf7sSelectGroup\";s:6:\"cf7Tag\";s:7:\"cf7Name\";s:8:\"file-995\";s:9:\"cf7sLabel\";s:0:\"\";s:11:\"cf7Required\";b:0;s:13:\"cf7TagOptions\";a:2:{i:0;O:8:\"stdClass\":3:{s:9:\"cf7Option\";s:5:\"limit\";s:11:\"optionLabel\";s:23:\"File size limit (bytes)\";s:10:\"optionType\";s:5:\"input\";}i:1;O:8:\"stdClass\":3:{s:9:\"cf7Option\";s:0:\"\";s:11:\"optionLabel\";s:21:\"Acceptable file types\";s:10:\"optionType\";s:6:\"select\";}}s:8:\"cf7Limit\";s:0:\"\";s:12:\"cf7FileTypes\";s:0:\"\";s:14:\"cf7IdAttribute\";s:0:\"\";s:17:\"cf7ClassAttribute\";s:0:\"\";s:8:\"cf7sIcon\";s:9:\"paperclip\";s:10:\"noChildren\";b:1;}}s:8:\"expanded\";b:1;}}s:8:\"expanded\";b:1;}i:4;O:8:\"stdClass\":9:{s:8:\"cf7sType\";s:7:\"list-ol\";s:15:\"cf7sSelectLabel\";s:9:\"List - ol\";s:15:\"cf7sSelectGroup\";s:8:\"cf7sItem\";s:7:\"cf7Name\";s:11:\"list-ol-929\";s:9:\"cf7sLabel\";s:0:\"\";s:8:\"cf7sIcon\";s:9:\"editor-ol\";s:10:\"noChildren\";b:0;s:8:\"children\";a:1:{i:0;O:8:\"stdClass\":9:{s:8:\"cf7sType\";s:7:\"list-li\";s:15:\"cf7sSelectLabel\";s:14:\"List Item - li\";s:15:\"cf7sSelectGroup\";s:8:\"cf7sItem\";s:7:\"cf7Name\";s:11:\"list-li-971\";s:9:\"cf7sLabel\";s:0:\"\";s:8:\"cf7sIcon\";s:9:\"editor-ul\";s:10:\"noChildren\";b:0;s:8:\"children\";a:1:{i:0;O:8:\"stdClass\":15:{s:8:\"cf7sType\";s:4:\"date\";s:15:\"cf7sSelectLabel\";s:4:\"Date\";s:15:\"cf7sSelectGroup\";s:6:\"cf7Tag\";s:7:\"cf7Name\";s:8:\"date-598\";s:9:\"cf7sLabel\";s:0:\"\";s:11:\"cf7Required\";b:0;s:13:\"cf7TagOptions\";a:4:{i:0;O:8:\"stdClass\":3:{s:9:\"cf7Option\";s:0:\"\";s:11:\"optionLabel\";s:13:\"Default value\";s:10:\"optionType\";s:5:\"input\";}i:1;O:8:\"stdClass\":4:{s:9:\"cf7Option\";s:11:\"placeholder\";s:9:\"isChecked\";b:0;s:11:\"optionLabel\";s:45:\"Use this text as the placeholder of the field\";s:10:\"optionType\";s:8:\"checkbox\";}i:2;O:8:\"stdClass\":3:{s:9:\"cf7Option\";s:0:\"\";s:11:\"optionLabel\";s:11:\"Range - min\";s:10:\"optionType\";s:5:\"input\";}i:3;O:8:\"stdClass\":3:{s:9:\"cf7Option\";s:0:\"\";s:11:\"optionLabel\";s:11:\"Range - max\";s:10:\"optionType\";s:5:\"input\";}}s:9:\"cf7Values\";s:0:\"\";s:14:\"cf7Placeholder\";b:0;s:6:\"cf7Min\";s:0:\"\";s:6:\"cf7Max\";s:0:\"\";s:14:\"cf7IdAttribute\";s:0:\"\";s:17:\"cf7ClassAttribute\";s:0:\"\";s:8:\"cf7sIcon\";s:8:\"calendar\";s:10:\"noChildren\";b:1;}}s:8:\"expanded\";b:1;}}s:8:\"expanded\";b:1;}i:5;O:8:\"stdClass\":9:{s:8:\"cf7sType\";s:7:\"list-ol\";s:15:\"cf7sSelectLabel\";s:9:\"List - ol\";s:15:\"cf7sSelectGroup\";s:8:\"cf7sItem\";s:7:\"cf7Name\";s:11:\"list-ol-398\";s:9:\"cf7sLabel\";s:0:\"\";s:8:\"cf7sIcon\";s:9:\"editor-ol\";s:10:\"noChildren\";b:0;s:8:\"children\";a:1:{i:0;O:8:\"stdClass\":9:{s:8:\"cf7sType\";s:7:\"list-li\";s:15:\"cf7sSelectLabel\";s:14:\"List Item - li\";s:15:\"cf7sSelectGroup\";s:8:\"cf7sItem\";s:7:\"cf7Name\";s:11:\"list-li-682\";s:9:\"cf7sLabel\";s:0:\"\";s:8:\"cf7sIcon\";s:9:\"editor-ul\";s:10:\"noChildren\";b:0;s:8:\"children\";a:1:{i:0;O:8:\"stdClass\":15:{s:8:\"cf7sType\";s:10:\"acceptance\";s:15:\"cf7sSelectLabel\";s:20:\"Acceptance (confirm)\";s:15:\"cf7sSelectGroup\";s:6:\"cf7Tag\";s:7:\"cf7Name\";s:14:\"acceptance-167\";s:9:\"cf7sLabel\";s:0:\"\";s:11:\"cf7Required\";b:0;s:13:\"cf7TagOptions\";a:3:{i:0;O:8:\"stdClass\":4:{s:9:\"cf7Option\";s:10:\"default_on\";s:9:\"isChecked\";b:0;s:11:\"optionLabel\";s:37:\"Make this checkbox checked by default\";s:10:\"optionType\";s:8:\"checkbox\";}i:1;O:8:\"stdClass\":4:{s:9:\"cf7Option\";s:6:\"invert\";s:9:\"isChecked\";b:0;s:11:\"optionLabel\";s:24:\"Make this work inversely\";s:10:\"optionType\";s:8:\"checkbox\";}i:2;O:8:\"stdClass\":4:{s:9:\"cf7Option\";s:8:\"optional\";s:9:\"isChecked\";b:1;s:11:\"optionLabel\";s:27:\"Make this checkbox optional\";s:10:\"optionType\";s:8:\"checkbox\";}}s:12:\"cf7DefaultOn\";b:0;s:9:\"cf7Invert\";b:0;s:11:\"cf7Optional\";s:1:\"1\";s:10:\"cf7Content\";s:0:\"\";s:14:\"cf7IdAttribute\";s:0:\"\";s:17:\"cf7ClassAttribute\";s:0:\"\";s:8:\"cf7sIcon\";s:7:\"yes-alt\";s:10:\"noChildren\";b:1;}}s:8:\"expanded\";b:1;}}s:8:\"expanded\";b:1;}}'),(3869,2531,'cf7s_template','contact'),(3871,2535,'_wp_page_template','default'),(3872,2535,'_elementor_edit_mode','builder'),(3873,2535,'_elementor_template_type','wp-page'),(3874,2535,'_elementor_version','3.16.6'),(3875,2535,'_elementor_pro_version','3.7.7'),(3876,2535,'_elementor_data','[{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a4cba51\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"dynamic\":{\"active\":true},\"_id\":\"75314ff\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"a3a240e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"291dedf\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"info@demo.com\",\"email_subject\":\"New message from "SubscriptionFlow Demo"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@wordpressdemo.subscriptionflow.com\",\"email_from_name\":\"SubscriptionFlow Demo\",\"email_to_2\":\"info@demo.com\",\"email_subject_2\":\"New message from "SubscriptionFlow Demo"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@wordpressdemo.subscriptionflow.com\",\"email_from_name_2\":\"SubscriptionFlow Demo\",\"email_reply_to_2\":\"info@demo.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There's something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false}]'),(3877,2535,'_elementor_page_assets','a:0:{}'),(3878,2535,'_elementor_css','a:6:{s:4:\"time\";i:1701348719;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3879,2536,'_wp_page_template','default'),(3880,2536,'_elementor_edit_mode','builder'),(3881,2536,'_elementor_template_type','wp-page'),(3882,2536,'_elementor_version','3.16.6'),(3883,2536,'_elementor_pro_version','3.7.7'),(3884,2536,'_elementor_data','[{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a4cba51\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"dynamic\":{\"active\":true},\"_id\":\"75314ff\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"a3a240e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"291dedf\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"info@demo.com\",\"email_subject\":\"New message from "SubscriptionFlow Demo"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@wordpressdemo.subscriptionflow.com\",\"email_from_name\":\"SubscriptionFlow Demo\",\"email_to_2\":\"info@demo.com\",\"email_subject_2\":\"New message from "SubscriptionFlow Demo"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@wordpressdemo.subscriptionflow.com\",\"email_from_name_2\":\"SubscriptionFlow Demo\",\"email_reply_to_2\":\"info@demo.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There's something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false}]'),(3885,2536,'_elementor_page_assets','a:0:{}'),(3886,2536,'_elementor_css','a:6:{s:4:\"time\";i:1701348719;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3887,2537,'_wp_page_template','default'),(3888,2537,'_elementor_edit_mode','builder'),(3889,2537,'_elementor_template_type','wp-page'),(3890,2537,'_elementor_version','3.16.6'),(3891,2537,'_elementor_pro_version','3.7.7'),(3892,2537,'_elementor_data','[{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(3893,2537,'_elementor_page_assets','a:0:{}'),(3894,2537,'_elementor_css','a:6:{s:4:\"time\";i:1701348719;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3902,2538,'_wp_page_template','default'),(3903,2538,'_elementor_edit_mode','builder'),(3904,2538,'_elementor_template_type','wp-page'),(3905,2538,'_elementor_version','3.16.6'),(3906,2538,'_elementor_pro_version','3.7.7'),(3907,2538,'_elementor_data','[{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(3908,2538,'_elementor_page_assets','a:0:{}'),(3909,2538,'_elementor_css','a:7:{s:4:\"time\";i:1701348803;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(3910,2539,'_wp_page_template','default'),(3911,2539,'_elementor_edit_mode','builder'),(3912,2539,'_elementor_template_type','wp-page'),(3913,2539,'_elementor_version','3.16.6'),(3914,2539,'_elementor_pro_version','3.7.7'),(3915,2539,'_elementor_data','[{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(3916,2539,'_elementor_page_assets','a:0:{}'),(3917,2539,'_elementor_css','a:7:{s:4:\"time\";i:1701348803;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(3918,2540,'_wp_page_template','default'),(3919,2540,'_elementor_edit_mode','builder'),(3920,2540,'_elementor_template_type','wp-page'),(3921,2540,'_elementor_version','3.16.6'),(3922,2540,'_elementor_pro_version','3.7.7'),(3923,2540,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(3924,2540,'_elementor_page_assets','a:0:{}'),(3925,2540,'_elementor_css','a:7:{s:4:\"time\";i:1701348803;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(3929,2541,'_wp_page_template','default'),(3930,2541,'_elementor_edit_mode','builder'),(3931,2541,'_elementor_template_type','wp-page'),(3932,2541,'_elementor_version','3.16.6'),(3933,2541,'_elementor_pro_version','3.7.7'),(3934,2541,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(3935,2541,'_elementor_page_assets','a:0:{}'),(3936,2541,'_elementor_css','a:6:{s:4:\"time\";i:1701349171;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;s:0:\"\";}'),(3937,2542,'_wp_page_template','default'),(3938,2542,'_elementor_edit_mode','builder'),(3939,2542,'_elementor_template_type','wp-page'),(3940,2542,'_elementor_version','3.16.6'),(3941,2542,'_elementor_pro_version','3.7.7'),(3942,2542,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(3943,2542,'_elementor_page_assets','a:0:{}'),(3944,2542,'_elementor_css','a:6:{s:4:\"time\";i:1701349171;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;s:0:\"\";}'),(3945,2543,'_wp_page_template','default'),(3946,2543,'_elementor_edit_mode','builder'),(3947,2543,'_elementor_template_type','wp-page'),(3948,2543,'_elementor_version','3.16.6'),(3949,2543,'_elementor_pro_version','3.7.7'),(3950,2543,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(3951,2543,'_elementor_page_assets','a:0:{}'),(3952,2543,'_elementor_css','a:6:{s:4:\"time\";i:1701349171;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;s:0:\"\";}'),(3953,2544,'_wp_page_template','default'),(3954,2544,'_elementor_edit_mode','builder'),(3955,2544,'_elementor_template_type','wp-page'),(3956,2544,'_elementor_version','3.16.6'),(3957,2544,'_elementor_pro_version','3.7.7'),(3958,2544,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(3959,2544,'_elementor_page_assets','a:0:{}'),(3960,2545,'_wp_page_template','default'),(3961,2545,'_elementor_edit_mode','builder'),(3962,2545,'_elementor_template_type','wp-page'),(3963,2545,'_elementor_version','3.16.6'),(3964,2545,'_elementor_pro_version','3.7.7'),(3965,2545,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(3966,2545,'_elementor_page_assets','a:0:{}'),(3967,2546,'_wp_page_template','default'),(3968,2546,'_elementor_edit_mode','builder'),(3969,2546,'_elementor_template_type','wp-page'),(3970,2546,'_elementor_version','3.16.6'),(3971,2546,'_elementor_pro_version','3.7.7'),(3972,2546,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\n.form input {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n}\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(3973,2546,'_elementor_page_assets','a:0:{}'),(3975,2547,'_wp_page_template','default'),(3976,2547,'_elementor_edit_mode','builder'),(3977,2547,'_elementor_template_type','wp-page'),(3978,2547,'_elementor_version','3.16.6'),(3979,2547,'_elementor_pro_version','3.7.7'),(3980,2547,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\n.form input {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n}\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(3981,2547,'_elementor_page_assets','a:0:{}'),(3982,2547,'_elementor_css','a:6:{s:4:\"time\";i:1701349565;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;s:0:\"\";}'),(3983,2548,'_wp_page_template','default'),(3984,2548,'_elementor_edit_mode','builder'),(3985,2548,'_elementor_template_type','wp-page'),(3986,2548,'_elementor_version','3.16.6'),(3987,2548,'_elementor_pro_version','3.7.7'),(3988,2548,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\n.form input {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n}\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(3989,2548,'_elementor_page_assets','a:0:{}'),(3990,2548,'_elementor_css','a:6:{s:4:\"time\";i:1701349565;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;s:0:\"\";}'),(3991,2549,'_wp_page_template','default'),(3992,2549,'_elementor_edit_mode','builder'),(3993,2549,'_elementor_template_type','wp-page'),(3994,2549,'_elementor_version','3.16.6'),(3995,2549,'_elementor_pro_version','3.7.7'),(3996,2549,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\n.form input {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n}\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(3997,2549,'_elementor_page_assets','a:0:{}'),(3998,2549,'_elementor_css','a:6:{s:4:\"time\";i:1701349565;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;s:0:\"\";}'),(4000,2550,'_wp_page_template','default'),(4001,2550,'_elementor_edit_mode','builder'),(4002,2550,'_elementor_template_type','wp-page'),(4003,2550,'_elementor_version','3.16.6'),(4004,2550,'_elementor_pro_version','3.7.7'),(4005,2550,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\n.form input {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n}\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4006,2550,'_elementor_page_assets','a:0:{}'),(4007,2550,'_elementor_css','a:6:{s:4:\"time\";i:1701349609;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;s:0:\"\";}'),(4008,2551,'_wp_page_template','default'),(4009,2551,'_elementor_edit_mode','builder'),(4010,2551,'_elementor_template_type','wp-page'),(4011,2551,'_elementor_version','3.16.6'),(4012,2551,'_elementor_pro_version','3.7.7'),(4013,2551,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\n.form input {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n}\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4014,2551,'_elementor_page_assets','a:0:{}'),(4015,2551,'_elementor_css','a:6:{s:4:\"time\";i:1701349609;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;s:0:\"\";}'),(4016,2552,'_wp_page_template','default'),(4017,2552,'_elementor_edit_mode','builder'),(4018,2552,'_elementor_template_type','wp-page'),(4019,2552,'_elementor_version','3.16.6'),(4020,2552,'_elementor_pro_version','3.7.7'),(4021,2552,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform input {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n}\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4022,2552,'_elementor_page_assets','a:0:{}'),(4023,2552,'_elementor_css','a:6:{s:4:\"time\";i:1701349609;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;s:0:\"\";}'),(4024,2553,'_wp_page_template','default'),(4025,2553,'_elementor_edit_mode','builder'),(4026,2553,'_elementor_template_type','wp-page'),(4027,2553,'_elementor_version','3.16.6'),(4028,2553,'_elementor_pro_version','3.7.7'),(4029,2553,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform input {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n}\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4030,2553,'_elementor_page_assets','a:0:{}'),(4031,2554,'_wp_page_template','default'),(4032,2554,'_elementor_edit_mode','builder'),(4033,2554,'_elementor_template_type','wp-page'),(4034,2554,'_elementor_version','3.16.6'),(4035,2554,'_elementor_pro_version','3.7.7'),(4036,2554,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform input {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n}\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4037,2554,'_elementor_page_assets','a:0:{}'),(4038,2555,'_wp_page_template','default'),(4039,2555,'_elementor_edit_mode','builder'),(4040,2555,'_elementor_template_type','wp-page'),(4041,2555,'_elementor_version','3.16.6'),(4042,2555,'_elementor_pro_version','3.7.7'),(4043,2555,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n}\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4044,2555,'_elementor_page_assets','a:0:{}'),(4045,2556,'_wp_page_template','default'),(4046,2556,'_elementor_edit_mode','builder'),(4047,2556,'_elementor_template_type','wp-page'),(4048,2556,'_elementor_version','3.16.6'),(4049,2556,'_elementor_pro_version','3.7.7'),(4050,2556,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n}\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4051,2556,'_elementor_page_assets','a:0:{}'),(4052,2557,'_wp_page_template','default'),(4053,2557,'_elementor_edit_mode','builder'),(4054,2557,'_elementor_template_type','wp-page'),(4055,2557,'_elementor_version','3.16.6'),(4056,2557,'_elementor_pro_version','3.7.7'),(4057,2557,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n}\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4058,2557,'_elementor_page_assets','a:0:{}'),(4059,2558,'_wp_page_template','default'),(4060,2558,'_elementor_edit_mode','builder'),(4061,2558,'_elementor_template_type','wp-page'),(4062,2558,'_elementor_version','3.16.6'),(4063,2558,'_elementor_pro_version','3.7.7'),(4064,2558,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform input[type=\\\"email\\\"] ,\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n}\\n\\nform p{\\n \\npadding: 10px 30px;\\nborder-bottom: 1px soli #E8E8F0;\\n}\\n\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4065,2558,'_elementor_page_assets','a:0:{}'),(4066,2559,'_wp_page_template','default'),(4067,2559,'_elementor_edit_mode','builder'),(4068,2559,'_elementor_template_type','wp-page'),(4069,2559,'_elementor_version','3.16.6'),(4070,2559,'_elementor_pro_version','3.7.7'),(4071,2559,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform input[type=\\\"email\\\"] ,\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n}\\n\\nform p{\\n \\npadding: 10px 30px;\\nborder-bottom: 1px soli #E8E8F0;\\n}\\n\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4072,2559,'_elementor_page_assets','a:0:{}'),(4073,2560,'_wp_page_template','default'),(4074,2560,'_elementor_edit_mode','builder'),(4075,2560,'_elementor_template_type','wp-page'),(4076,2560,'_elementor_version','3.16.6'),(4077,2560,'_elementor_pro_version','3.7.7'),(4078,2560,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform input[type=\\\"email\\\"] ,\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n}\\n\\nform p{\\n \\npadding: 10px 30px;\\nborder-bottom: 1px soli #E8E8F0;\\n}\\n\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4079,2560,'_elementor_page_assets','a:0:{}'),(4080,2561,'_wp_page_template','default'),(4081,2561,'_elementor_edit_mode','builder'),(4082,2561,'_elementor_template_type','wp-page'),(4083,2561,'_elementor_version','3.16.6'),(4084,2561,'_elementor_pro_version','3.7.7'),(4085,2561,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform input[type=\\\"email\\\"] ,\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n}\\n\\nform p{\\n \\npadding: 10px 30px;\\nborder-bottom: 1px soli #E8E8F0;\\nmargin-bottom: 0px;\\n}\\n\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4086,2561,'_elementor_page_assets','a:0:{}'),(4088,2562,'_wp_page_template','default'),(4089,2562,'_elementor_edit_mode','builder'),(4090,2562,'_elementor_template_type','wp-page'),(4091,2562,'_elementor_version','3.16.6'),(4092,2562,'_elementor_pro_version','3.7.7'),(4093,2562,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform input[type=\\\"email\\\"] ,\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n}\\n\\nform p{\\n \\npadding: 10px 30px;\\nborder-bottom: 1px soli #E8E8F0;\\nmargin-bottom: 0px;\\n}\\n\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4094,2562,'_elementor_page_assets','a:0:{}'),(4095,2562,'_elementor_css','a:6:{s:4:\"time\";i:1701349745;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;s:0:\"\";}'),(4096,2563,'_wp_page_template','default'),(4097,2563,'_elementor_edit_mode','builder'),(4098,2563,'_elementor_template_type','wp-page'),(4099,2563,'_elementor_version','3.16.6'),(4100,2563,'_elementor_pro_version','3.7.7'),(4101,2563,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform input[type=\\\"email\\\"] ,\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n}\\n\\nform p{\\n \\npadding: 10px 30px;\\nborder-bottom: 1px soli #E8E8F0;\\nmargin-bottom: 0px;\\n}\\n\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4102,2563,'_elementor_page_assets','a:0:{}'),(4103,2563,'_elementor_css','a:6:{s:4:\"time\";i:1701349745;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;s:0:\"\";}'),(4104,2564,'_wp_page_template','default'),(4105,2564,'_elementor_edit_mode','builder'),(4106,2564,'_elementor_template_type','wp-page'),(4107,2564,'_elementor_version','3.16.6'),(4108,2564,'_elementor_pro_version','3.7.7'),(4109,2564,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform textarea,\\nform input[type=\\\"email\\\"] ,\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n}\\n\\nform p{\\n \\npadding: 10px 30px;\\nborder-bottom: 1px solid #E8E8F0;\\nmargin-bottom: 0px;\\n}\\n\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4110,2564,'_elementor_page_assets','a:0:{}'),(4111,2564,'_elementor_css','a:6:{s:4:\"time\";i:1701349745;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;s:0:\"\";}'),(4113,2565,'_wp_page_template','default'),(4114,2565,'_elementor_edit_mode','builder'),(4115,2565,'_elementor_template_type','wp-page'),(4116,2565,'_elementor_version','3.16.6'),(4117,2565,'_elementor_pro_version','3.7.7'),(4118,2565,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform textarea,\\nform input[type=\\\"email\\\"] ,\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n}\\n\\nform p{\\n \\npadding: 10px 30px;\\nborder-bottom: 1px solid #E8E8F0;\\nmargin-bottom: 0px;\\n}\\n\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4119,2565,'_elementor_page_assets','a:0:{}'),(4120,2565,'_elementor_css','a:6:{s:4:\"time\";i:1701349804;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;s:0:\"\";}'),(4121,2566,'_wp_page_template','default'),(4122,2566,'_elementor_edit_mode','builder'),(4123,2566,'_elementor_template_type','wp-page'),(4124,2566,'_elementor_version','3.16.6'),(4125,2566,'_elementor_pro_version','3.7.7'),(4126,2566,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform textarea,\\nform input[type=\\\"email\\\"] ,\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n}\\n\\nform p{\\n \\npadding: 10px 30px;\\nborder-bottom: 1px solid #E8E8F0;\\nmargin-bottom: 0px;\\n}\\n\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4127,2566,'_elementor_page_assets','a:0:{}'),(4128,2566,'_elementor_css','a:6:{s:4:\"time\";i:1701349804;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;s:0:\"\";}'),(4129,2567,'_wp_page_template','default'),(4130,2567,'_elementor_edit_mode','builder'),(4131,2567,'_elementor_template_type','wp-page'),(4132,2567,'_elementor_version','3.16.6'),(4133,2567,'_elementor_pro_version','3.7.7'),(4134,2567,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform textarea,\\nform input[type=\\\"email\\\"] ,\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n padding: 0px 0px 0px;\\n margin: 10px 0px 0px;\\n}\\n\\nform p{\\n \\npadding: 10px 30px;\\nborder-bottom: 1px solid #E8E8F0;\\nmargin-bottom: 0px;\\n}\\n\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4135,2567,'_elementor_page_assets','a:0:{}'),(4136,2567,'_elementor_css','a:6:{s:4:\"time\";i:1701349804;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;s:0:\"\";}'),(4139,2568,'_wp_page_template','default'),(4140,2568,'_elementor_edit_mode','builder'),(4141,2568,'_elementor_template_type','wp-page'),(4142,2568,'_elementor_version','3.16.6'),(4143,2568,'_elementor_pro_version','3.7.7'),(4144,2568,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform textarea,\\nform input[type=\\\"email\\\"] ,\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n padding: 0px 0px 0px;\\n margin: 10px 0px 0px;\\n}\\n\\nform p{\\n \\npadding: 10px 30px;\\nborder-bottom: 1px solid #E8E8F0;\\nmargin-bottom: 0px;\\n}\\n\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4145,2568,'_elementor_page_assets','a:0:{}'),(4146,2568,'_elementor_css','a:6:{s:4:\"time\";i:1701349922;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;s:0:\"\";}'),(4147,2569,'_wp_page_template','default'),(4148,2569,'_elementor_edit_mode','builder'),(4149,2569,'_elementor_template_type','wp-page'),(4150,2569,'_elementor_version','3.16.6'),(4151,2569,'_elementor_pro_version','3.7.7'),(4152,2569,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform textarea,\\nform input[type=\\\"email\\\"] ,\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n padding: 0px 0px 0px;\\n margin: 10px 0px 0px;\\n}\\n\\nform p{\\n \\npadding: 10px 30px;\\nborder-bottom: 1px solid #E8E8F0;\\nmargin-bottom: 0px;\\n}\\n\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4153,2569,'_elementor_page_assets','a:0:{}'),(4154,2569,'_elementor_css','a:6:{s:4:\"time\";i:1701349922;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;s:0:\"\";}'),(4155,2570,'_wp_page_template','default'),(4156,2570,'_elementor_edit_mode','builder'),(4157,2570,'_elementor_template_type','wp-page'),(4158,2570,'_elementor_version','3.16.6'),(4159,2570,'_elementor_pro_version','3.7.7'),(4160,2570,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\",\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform textarea,\\nform input[type=\\\"email\\\"] ,\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n padding: 0px 0px 0px;\\n margin: 10px 0px 0px;\\n}\\n\\nform p{\\n \\npadding: 10px 30px;\\nborder-bottom: 1px solid #E8E8F0;\\nmargin-bottom: 0px;\\n}\\n\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4161,2570,'_elementor_page_assets','a:0:{}'),(4162,2570,'_elementor_css','a:6:{s:4:\"time\";i:1701349922;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;s:0:\"\";}'),(4163,2571,'_wp_page_template','default'),(4164,2571,'_elementor_edit_mode','builder'),(4165,2571,'_elementor_template_type','wp-page'),(4166,2571,'_elementor_version','3.16.6'),(4167,2571,'_elementor_pro_version','3.7.7'),(4168,2571,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\",\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform textarea,\\nform input[type=\\\"email\\\"] ,\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n padding: 0px 0px 0px;\\n margin: 10px 0px 0px;\\n}\\n\\nform p{\\n \\npadding: 10px 30px;\\nborder-bottom: 1px solid #E8E8F0;\\nmargin-bottom: 0px;\\n}\\n\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4169,2571,'_elementor_page_assets','a:0:{}'),(4170,2572,'_wp_page_template','default'),(4171,2572,'_elementor_edit_mode','builder'),(4172,2572,'_elementor_template_type','wp-page'),(4173,2572,'_elementor_version','3.16.6'),(4174,2572,'_elementor_pro_version','3.7.7'),(4175,2572,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\",\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform textarea,\\nform input[type=\\\"email\\\"] ,\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n padding: 0px 0px 0px;\\n margin: 10px 0px 0px;\\n}\\n\\nform p{\\n \\npadding: 10px 30px;\\nborder-bottom: 1px solid #E8E8F0;\\nmargin-bottom: 0px;\\n}\\n\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4176,2572,'_elementor_page_assets','a:0:{}'),(4177,2573,'_wp_page_template','default'),(4178,2573,'_elementor_edit_mode','builder'),(4179,2573,'_elementor_template_type','wp-page'),(4180,2573,'_elementor_version','3.16.6'),(4181,2573,'_elementor_pro_version','3.7.7'),(4182,2573,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\",\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform textarea,\\nform input[type=\\\"email\\\"] ,\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n padding: 0px 0px 0px;\\n margin: 10px 0px 0px;\\n}\\n\\nform p{\\n \\npadding: 10px 30px;\\nborder-bottom: 1px solid #E8E8F0;\\nmargin-bottom: 0px;\\n}\\n\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4183,2573,'_elementor_page_assets','a:0:{}'),(4186,2574,'_wp_page_template','default'),(4187,2574,'_elementor_edit_mode','builder'),(4188,2574,'_elementor_template_type','wp-page'),(4189,2574,'_elementor_version','3.16.6'),(4190,2574,'_elementor_pro_version','3.7.7'),(4191,2574,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\",\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform textarea,\\nform input[type=\\\"email\\\"] ,\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n padding: 0px 0px 0px;\\n margin: 10px 0px 0px;\\n}\\n\\nform p{\\n \\npadding: 10px 30px;\\nborder-bottom: 1px solid #E8E8F0;\\nmargin-bottom: 0px;\\n}\\n\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4192,2574,'_elementor_page_assets','a:0:{}'),(4193,2574,'_elementor_css','a:6:{s:4:\"time\";i:1701350078;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4194,2575,'_wp_page_template','default'),(4195,2575,'_elementor_edit_mode','builder'),(4196,2575,'_elementor_template_type','wp-page'),(4197,2575,'_elementor_version','3.16.6'),(4198,2575,'_elementor_pro_version','3.7.7'),(4199,2575,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\",\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform textarea,\\nform input[type=\\\"email\\\"] ,\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n padding: 0px 0px 0px;\\n margin: 10px 0px 0px;\\n}\\n\\nform p{\\n \\npadding: 10px 30px;\\nborder-bottom: 1px solid #E8E8F0;\\nmargin-bottom: 0px;\\n}\\n\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4200,2575,'_elementor_page_assets','a:0:{}'),(4201,2575,'_elementor_css','a:6:{s:4:\"time\";i:1701350078;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4202,2576,'_wp_page_template','default'),(4203,2576,'_elementor_edit_mode','builder'),(4204,2576,'_elementor_template_type','wp-page'),(4205,2576,'_elementor_version','3.16.6'),(4206,2576,'_elementor_pro_version','3.7.7'),(4207,2576,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\",\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform textarea,\\nform input[type=\\\"email\\\"] ,\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n padding: 0px 0px 0px;\\n margin: 10px 0px 0px;\\n}\\n\\nform p{\\n \\npadding: 10px 30px;\\nborder-bottom: 1px solid #E8E8F0;\\nmargin-bottom: 0px;\\n}\\n\\n\\nform [type=\\\"submit\\\"],\\nform [type=\\\"submit\\\"],\\nform [type=\\\"button\\\"],\\nform [type=\\\"button\\\"] {\\n color: #ffffff;\\n background-color: #605be5;\\n text-decoration: none;\\n}\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4208,2576,'_elementor_page_assets','a:0:{}'),(4209,2576,'_elementor_css','a:6:{s:4:\"time\";i:1701350078;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4210,2577,'_wp_page_template','default'),(4211,2577,'_elementor_edit_mode','builder'),(4212,2577,'_elementor_template_type','wp-page'),(4213,2577,'_elementor_version','3.16.6'),(4214,2577,'_elementor_pro_version','3.7.7'),(4215,2577,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\",\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform textarea,\\nform input[type=\\\"email\\\"] ,\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n padding: 0px 0px 0px;\\n margin: 10px 0px 0px;\\n}\\n\\nform p{\\n \\npadding: 10px 30px;\\nborder-bottom: 1px solid #E8E8F0;\\nmargin-bottom: 0px;\\n}\\n\\n\\nform [type=\\\"submit\\\"],\\nform [type=\\\"submit\\\"],\\nform [type=\\\"button\\\"],\\nform [type=\\\"button\\\"] {\\n color: #ffffff;\\n background-color: #605be5;\\n text-decoration: none;\\n}\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4216,2577,'_elementor_page_assets','a:0:{}'),(4217,2578,'_wp_page_template','default'),(4218,2578,'_elementor_edit_mode','builder'),(4219,2578,'_elementor_template_type','wp-page'),(4220,2578,'_elementor_version','3.16.6'),(4221,2578,'_elementor_pro_version','3.7.7'),(4222,2578,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\",\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform textarea,\\nform input[type=\\\"email\\\"] ,\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n padding: 0px 0px 0px;\\n margin: 10px 0px 0px;\\n}\\n\\nform p{\\n \\npadding: 10px 30px;\\nborder-bottom: 1px solid #E8E8F0;\\nmargin-bottom: 0px;\\n}\\n\\n\\nform [type=\\\"submit\\\"],\\nform [type=\\\"submit\\\"],\\nform [type=\\\"button\\\"],\\nform [type=\\\"button\\\"] {\\n color: #ffffff;\\n background-color: #605be5;\\n text-decoration: none;\\n}\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4223,2578,'_elementor_page_assets','a:0:{}'),(4224,2579,'_wp_page_template','default'),(4225,2579,'_elementor_edit_mode','builder'),(4226,2579,'_elementor_template_type','wp-page'),(4227,2579,'_elementor_version','3.16.6'),(4228,2579,'_elementor_pro_version','3.7.7'),(4229,2579,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\",\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform textarea,\\nform input[type=\\\"email\\\"] ,\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n padding: 0px 0px 0px;\\n margin: 10px 0px 0px;\\n}\\n\\nform p{\\n \\npadding: 10px 30px;\\nborder-bottom: 1px solid #E8E8F0;\\nmargin-bottom: 0px;\\n}\\n\\n\\nform [type=\\\"submit\\\"],\\nform [type=\\\"submit\\\"],\\nform [type=\\\"button\\\"],\\nform [type=\\\"button\\\"] {\\n color: #ffffff;\\n background-color: #605be5;\\n text-decoration: none;\\n width: 300px;\\n font-size: 25px\\n}\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4230,2579,'_elementor_page_assets','a:0:{}'),(4232,2580,'_wp_page_template','default'),(4233,2580,'_elementor_edit_mode','builder'),(4234,2580,'_elementor_template_type','wp-page'),(4235,2580,'_elementor_version','3.16.6'),(4236,2580,'_elementor_pro_version','3.7.7'),(4237,2580,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\",\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform textarea,\\nform input[type=\\\"email\\\"] ,\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n padding: 0px 0px 0px;\\n margin: 10px 0px 0px;\\n}\\n\\nform p{\\n \\npadding: 10px 30px;\\nborder-bottom: 1px solid #E8E8F0;\\nmargin-bottom: 0px;\\n}\\n\\n\\nform [type=\\\"submit\\\"],\\nform [type=\\\"submit\\\"],\\nform [type=\\\"button\\\"],\\nform [type=\\\"button\\\"] {\\n color: #ffffff;\\n background-color: #605be5;\\n text-decoration: none;\\n width: 300px;\\n font-size: 25px\\n}\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4238,2580,'_elementor_page_assets','a:0:{}'),(4239,2580,'_elementor_css','a:6:{s:4:\"time\";i:1701350929;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4240,2581,'_wp_page_template','default'),(4241,2581,'_elementor_edit_mode','builder'),(4242,2581,'_elementor_template_type','wp-page'),(4243,2581,'_elementor_version','3.16.6'),(4244,2581,'_elementor_pro_version','3.7.7'),(4245,2581,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\",\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform textarea,\\nform input[type=\\\"email\\\"] ,\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n padding: 0px 0px 0px;\\n margin: 10px 0px 0px;\\n}\\n\\nform p{\\n \\npadding: 10px 30px;\\nborder-bottom: 1px solid #E8E8F0;\\nmargin-bottom: 0px;\\n}\\n\\n\\nform [type=\\\"submit\\\"],\\nform [type=\\\"submit\\\"],\\nform [type=\\\"button\\\"],\\nform [type=\\\"button\\\"] {\\n color: #ffffff;\\n background-color: #605be5;\\n text-decoration: none;\\n width: 300px;\\n font-size: 25px\\n}\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4246,2581,'_elementor_page_assets','a:0:{}'),(4247,2581,'_elementor_css','a:6:{s:4:\"time\";i:1701350929;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4248,2582,'_wp_page_template','default'),(4249,2582,'_elementor_edit_mode','builder'),(4250,2582,'_elementor_template_type','wp-page'),(4251,2582,'_elementor_version','3.16.6'),(4252,2582,'_elementor_pro_version','3.7.7'),(4253,2582,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\",\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform textarea,\\nform input[type=\\\"email\\\"] ,\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n padding: 0px 0px 0px;\\n margin: 10px 0px 0px;\\n}\\n\\nform p{\\n \\npadding: 10px 30px;\\nborder-bottom: 1px solid #E8E8F0;\\nmargin-bottom: 0px;\\n}\\n\\n\\nform [type=\\\"submit\\\"],\\nform [type=\\\"submit\\\"],\\nform [type=\\\"button\\\"],\\nform [type=\\\"button\\\"] {\\n color: #ffffff;\\n background-color: #605be5;\\n text-decoration: none;\\n width: 300px;\\n font-size: 20px\\n}\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4254,2582,'_elementor_page_assets','a:0:{}'),(4255,2582,'_elementor_css','a:6:{s:4:\"time\";i:1701350929;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4263,2583,'_wp_page_template','default'),(4264,2583,'_elementor_edit_mode','builder'),(4265,2583,'_elementor_template_type','wp-page'),(4266,2583,'_elementor_version','3.16.6'),(4267,2583,'_elementor_pro_version','3.7.7'),(4268,2583,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\",\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform textarea,\\nform input[type=\\\"email\\\"] ,\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n padding: 0px 0px 0px;\\n margin: 10px 0px 0px;\\n}\\n\\nform p{\\n \\npadding: 10px 30px;\\nborder-bottom: 1px solid #E8E8F0;\\nmargin-bottom: 0px;\\n}\\n\\n\\nform [type=\\\"submit\\\"],\\nform [type=\\\"submit\\\"],\\nform [type=\\\"button\\\"],\\nform [type=\\\"button\\\"] {\\n color: #ffffff;\\n background-color: #605be5;\\n text-decoration: none;\\n width: 300px;\\n font-size: 20px\\n}\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4269,2583,'_elementor_page_assets','a:0:{}'),(4270,2583,'_elementor_css','a:6:{s:4:\"time\";i:1701350947;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4271,2584,'_wp_page_template','default'),(4272,2584,'_elementor_edit_mode','builder'),(4273,2584,'_elementor_template_type','wp-page'),(4274,2584,'_elementor_version','3.16.6'),(4275,2584,'_elementor_pro_version','3.7.7'),(4276,2584,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\",\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform textarea,\\nform input[type=\\\"email\\\"] ,\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n padding: 0px 0px 0px;\\n margin: 10px 0px 0px;\\n}\\n\\nform p{\\n \\npadding: 10px 30px;\\nborder-bottom: 1px solid #E8E8F0;\\nmargin-bottom: 0px;\\n}\\n\\n\\nform [type=\\\"submit\\\"],\\nform [type=\\\"submit\\\"],\\nform [type=\\\"button\\\"],\\nform [type=\\\"button\\\"] {\\n color: #ffffff;\\n background-color: #605be5;\\n text-decoration: none;\\n width: 300px;\\n font-size: 20px\\n}\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4277,2584,'_elementor_page_assets','a:0:{}'),(4278,2584,'_elementor_css','a:6:{s:4:\"time\";i:1701350947;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4279,2585,'_wp_page_template','default'),(4280,2585,'_elementor_edit_mode','builder'),(4281,2585,'_elementor_template_type','wp-page'),(4282,2585,'_elementor_version','3.16.6'),(4283,2585,'_elementor_pro_version','3.7.7'),(4284,2585,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\",\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform textarea,\\nform select,\\nform input[type=\\\"email\\\"] ,\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n padding: 0px 0px 0px;\\n margin: 10px 0px 0px;\\n}\\n\\nform p{\\n \\npadding: 10px 30px;\\nborder-bottom: 1px solid #E8E8F0;\\nmargin-bottom: 0px;\\n}\\n\\n\\nform [type=\\\"submit\\\"],\\nform [type=\\\"submit\\\"],\\nform [type=\\\"button\\\"],\\nform [type=\\\"button\\\"] {\\n color: #ffffff;\\n background-color: #605be5;\\n text-decoration: none;\\n width: 300px;\\n font-size: 20px\\n}\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4285,2585,'_elementor_page_assets','a:0:{}'),(4286,2585,'_elementor_css','a:6:{s:4:\"time\";i:1701350947;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4288,2586,'_wp_page_template','default'),(4289,2586,'_elementor_edit_mode','builder'),(4290,2586,'_elementor_template_type','wp-page'),(4291,2586,'_elementor_version','3.16.6'),(4292,2586,'_elementor_pro_version','3.7.7'),(4293,2586,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\",\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform textarea,\\nform select,\\nform input[type=\\\"email\\\"] ,\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n padding: 0px 0px 0px;\\n margin: 10px 0px 0px;\\n}\\n\\nform p{\\n \\npadding: 10px 30px;\\nborder-bottom: 1px solid #E8E8F0;\\nmargin-bottom: 0px;\\n}\\n\\n\\nform [type=\\\"submit\\\"],\\nform [type=\\\"submit\\\"],\\nform [type=\\\"button\\\"],\\nform [type=\\\"button\\\"] {\\n color: #ffffff;\\n background-color: #605be5;\\n text-decoration: none;\\n width: 300px;\\n font-size: 20px\\n}\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4294,2586,'_elementor_page_assets','a:0:{}'),(4295,2586,'_elementor_css','a:6:{s:4:\"time\";i:1701353371;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4296,2587,'_wp_page_template','default'),(4297,2587,'_elementor_edit_mode','builder'),(4298,2587,'_elementor_template_type','wp-page'),(4299,2587,'_elementor_version','3.16.6'),(4300,2587,'_elementor_pro_version','3.7.7'),(4301,2587,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\",\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform textarea,\\nform select,\\nform input[type=\\\"email\\\"] ,\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n padding: 0px 0px 0px;\\n margin: 10px 0px 0px;\\n}\\n\\nform p{\\n \\npadding: 10px 30px;\\nborder-bottom: 1px solid #E8E8F0;\\nmargin-bottom: 0px;\\n}\\n\\n\\nform [type=\\\"submit\\\"],\\nform [type=\\\"submit\\\"],\\nform [type=\\\"button\\\"],\\nform [type=\\\"button\\\"] {\\n color: #ffffff;\\n background-color: #605be5;\\n text-decoration: none;\\n width: 300px;\\n font-size: 20px\\n}\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4302,2587,'_elementor_page_assets','a:0:{}'),(4303,2587,'_elementor_css','a:6:{s:4:\"time\";i:1701353371;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4304,2588,'_wp_page_template','default'),(4305,2588,'_elementor_edit_mode','builder'),(4306,2588,'_elementor_template_type','wp-page'),(4307,2588,'_elementor_version','3.16.6'),(4308,2588,'_elementor_pro_version','3.7.7'),(4309,2588,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\",\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform textarea,\\nform select,\\nform input[type=\\\"email\\\"] ,\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n padding: 0px 0px 0px;\\n margin: 10px 0px 0px;\\n}\\n\\nform p{\\n \\npadding: 10px 30px;\\nborder-bottom: 1px solid #E8E8F0;\\nmargin-bottom: 0px;\\n}\\n\\n\\nform [type=\\\"submit\\\"],\\nform [type=\\\"submit\\\"],\\nform [type=\\\"button\\\"],\\nform [type=\\\"button\\\"] {\\n color: #ffffff;\\n background-color: #605be5;\\n text-decoration: none;\\n width: 300px;\\n font-size: 20px\\n}\\n.wpcf7-form-control.wpcf7-select {\\n padding: 1px 18px 0px;\\n height: 37px;\\n}\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4310,2588,'_elementor_page_assets','a:0:{}'),(4311,2588,'_elementor_css','a:6:{s:4:\"time\";i:1701353371;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4314,2589,'_wp_page_template','default'),(4315,2589,'_elementor_edit_mode','builder'),(4316,2589,'_elementor_template_type','wp-page'),(4317,2589,'_elementor_version','3.16.6'),(4318,2589,'_elementor_pro_version','3.7.7'),(4319,2589,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\",\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform textarea,\\nform select,\\nform input[type=\\\"email\\\"] ,\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n padding: 0px 0px 0px;\\n margin: 10px 0px 0px;\\n}\\n\\nform p{\\n \\npadding: 10px 30px;\\nborder-bottom: 1px solid #E8E8F0;\\nmargin-bottom: 0px;\\n}\\n\\n\\nform [type=\\\"submit\\\"],\\nform [type=\\\"submit\\\"],\\nform [type=\\\"button\\\"],\\nform [type=\\\"button\\\"] {\\n color: #ffffff;\\n background-color: #605be5;\\n text-decoration: none;\\n width: 300px;\\n font-size: 20px\\n}\\n.wpcf7-form-control.wpcf7-select {\\n padding: 1px 18px 0px;\\n height: 37px;\\n}\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4320,2589,'_elementor_page_assets','a:0:{}'),(4321,2589,'_elementor_css','a:6:{s:4:\"time\";i:1701353471;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4322,2590,'_wp_page_template','default'),(4323,2590,'_elementor_edit_mode','builder'),(4324,2590,'_elementor_template_type','wp-page'),(4325,2590,'_elementor_version','3.16.6'),(4326,2590,'_elementor_pro_version','3.7.7'),(4327,2590,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"712a0b1\\\" title=\\\"Payment Widget\\\"]\",\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform textarea,\\nform select,\\nform input[type=\\\"email\\\"] ,\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n padding: 0px 0px 0px;\\n margin: 10px 0px 0px;\\n}\\n\\nform p{\\n \\npadding: 10px 30px;\\nborder-bottom: 1px solid #E8E8F0;\\nmargin-bottom: 0px;\\n}\\n\\n\\nform [type=\\\"submit\\\"],\\nform [type=\\\"submit\\\"],\\nform [type=\\\"button\\\"],\\nform [type=\\\"button\\\"] {\\n color: #ffffff;\\n background-color: #605be5;\\n text-decoration: none;\\n width: 300px;\\n font-size: 20px\\n}\\n.wpcf7-form-control.wpcf7-select {\\n padding: 1px 18px 0px;\\n height: 37px;\\n}\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4328,2590,'_elementor_page_assets','a:0:{}'),(4329,2590,'_elementor_css','a:6:{s:4:\"time\";i:1701353471;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4330,2591,'_wp_page_template','default'),(4331,2591,'_elementor_edit_mode','builder'),(4332,2591,'_elementor_template_type','wp-page'),(4333,2591,'_elementor_version','3.16.6'),(4334,2591,'_elementor_pro_version','3.7.7'),(4335,2591,'_elementor_data','[{\"id\":\"8707d59\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"526995f\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"5637390\"}]},\"elements\":[{\"id\":\"bd35317\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fe58a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"TELL US WHERE TO SEND YOUR PACKAGE!\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d49e2b\",\"elType\":\"section\",\"settings\":{\"hover_parallax\":[{\"layer_position_vr\":{\"unit\":\"%\",\"size\":30},\"layer_position_hr\":{\"unit\":\"%\",\"size\":40},\"_id\":\"1d4dcf1\"},{\"layer_position_vr\":{\"unit\":\"%\",\"size\":60},\"layer_position_hr\":{\"unit\":\"%\",\"size\":20},\"_id\":\"07b7a12\"}]},\"elements\":[{\"id\":\"028cb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2bdec4b\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"2531\\\" title=\\\"Payment Widget\\\"]\",\"custom_css\":\"form{\\n width: 590px;\\n margin: 0 auto;\\n margin-bottom: 25px;\\n border: 1px solid #E8E8F0;\\n border-radius: 12px;\\n}\\nform textarea,\\nform select,\\nform input[type=\\\"email\\\"] ,\\nform input[type=\\\"text\\\"] {\\n display: block;\\n width: 100%;\\n height: 30px;\\n color: #0A1F28;\\n font-size: 18px;\\n border: 0px!important;\\n padding: 0px 0px 0px;\\n margin: 10px 0px 0px;\\n}\\n\\nform p{\\n \\npadding: 10px 30px;\\nborder-bottom: 1px solid #E8E8F0;\\nmargin-bottom: 0px;\\n}\\n\\n\\nform [type=\\\"submit\\\"],\\nform [type=\\\"submit\\\"],\\nform [type=\\\"button\\\"],\\nform [type=\\\"button\\\"] {\\n color: #ffffff;\\n background-color: #605be5;\\n text-decoration: none;\\n width: 300px;\\n font-size: 20px\\n}\\n.wpcf7-form-control.wpcf7-select {\\n padding: 1px 18px 0px;\\n height: 37px;\\n}\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(4336,2591,'_elementor_page_assets','a:0:{}'),(4337,2591,'_elementor_css','a:6:{s:4:\"time\";i:1701353471;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4338,2529,'_elementor_css','a:6:{s:4:\"time\";i:1701425458;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4354,2592,'_menu_item_type','post_type'),(4355,2592,'_menu_item_menu_item_parent','0'),(4356,2592,'_menu_item_object_id','2529'),(4357,2592,'_menu_item_object','page'),(4358,2592,'_menu_item_target',''),(4359,2592,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4360,2592,'_menu_item_xfn',''),(4361,2592,'_menu_item_url',''),(4363,2370,'_wp_old_date','2023-10-23'),(4364,2520,'_wp_old_date','2023-10-23'); /*!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_520_ci NOT NULL, `post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open', `post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `pinged` text COLLATE utf8mb4_unicode_520_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_520_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_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=2596 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_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 (2,1,'2022-12-06 13:48:13','2022-12-06 13:48:13','<!-- 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ñ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://wordpressdemo.subscriptionflow.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','publish','closed','open','','sample-page','','','2022-12-06 13:48:13','2022-12-06 13:48:13','',0,'https://wordpressdemo.subscriptionflow.com/?page_id=2',0,'page','',0),(3,1,'2022-12-06 13:48:13','2022-12-06 13:48:13','<!-- 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://wordpressdemo.subscriptionflow.com.</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’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 "Remember Me", 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-12-06 13:48:13','2022-12-06 13:48:13','',0,'https://wordpressdemo.subscriptionflow.com/?page_id=3',0,'page','',0),(5,1,'2022-12-06 14:02:18','2022-12-06 14:02:18','','Default Kit','','publish','closed','closed','','default-kit','','','2022-12-06 14:02:18','2022-12-06 14:02:18','',0,'https://wordpressdemo.subscriptionflow.com/?p=5',0,'elementor_library','',0),(6,1,'2022-12-06 14:03:52','2022-12-06 14:03:52','<label> Your name\n [text* your-name] </label>\n\n<label> Your email\n [email* your-email] </label>\n\n<label> Subject\n [text* your-subject] </label>\n\n<label> Your message (optional)\n [textarea your-message] </label>\n\n[submit \"Submit\"]\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@wordpressdemo.subscriptionflow.com>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[_site_admin_email]\nReply-To: [your-email]\n\n0\n0\n\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@wordpressdemo.subscriptionflow.com>\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[your-email]\nReply-To: [_site_admin_email]\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nPlease fill out this field.\nThis field has a too long input.\nThis field has a too short input.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe uploaded file is too large.\nThere was an error uploading the file.','Contact form 1','','publish','closed','closed','','contact-form-1','','','2022-12-06 14:03:52','2022-12-06 14:03:52','',0,'https://wordpressdemo.subscriptionflow.com/?post_type=wpcf7_contact_form&p=6',0,'wpcf7_contact_form','',0),(7,1,'2022-12-06 14:03:58','2022-12-06 14:03:58','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2022-12-06 14:03:58','2022-12-06 14:03:58','',0,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/12/woocommerce-placeholder.png',0,'attachment','image/png',0),(18,1,'2022-06-07 07:35:21','2022-06-07 07:35:21','<style>/*! elementor - v3.9.0 - 06-12-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>Subscription Management Software</h2> \n <p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.</p> \n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/plans/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>Magazine</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/product/discounted-partner-member/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>eCommerce</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/demo-shop/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>Membership</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/membership/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>','Home','','publish','closed','closed','','home-wooshop-v1','','','2023-01-10 11:33:26','2023-01-10 11:33:26','',0,'https://nicktesting.kinsta.cloud/shopdiko1/?page_id=18',0,'page','',0),(130,1,'2022-06-07 12:44:52','2022-06-07 12:44:52','','Woo Shop v1 Product','','publish','closed','closed','','user-product_single-wooshop-v1-product','','','2022-06-07 12:44:52','2022-06-07 12:44:52','',0,'https://nicktesting.kinsta.cloud/shopdiko1/?wpr_templates=user-product_single-woo-shop-v1-single',0,'wpr_templates','',0),(337,1,'2022-06-08 12:35:35','2022-06-08 12:35:35','<picture>\n <img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/SF-logo.png\" alt=\"\">\n <a rel=\"home\" href=\"https://wordpressdemo.subscriptionflow.com/\"></a>\n </picture>\n <a rel=\"home\" href=\"https://wordpressdemo.subscriptionflow.com/\"></a>\n <nav data-trigger=\"hover\"><ul id=\"menu-1-53eac1f\"><li><a href=\"https://wordpressdemo.subscriptionflow.com/\">Home</a></li>\n</ul></nav><nav><ul id=\"mobile-menu-2-53eac1f\"><li><a href=\"https://wordpressdemo.subscriptionflow.com/\">Home</a></li>\n</ul></nav> \n <a data-text=\"Go\" href=\"https://wordpressdemo.subscriptionflow.com/login/\" target=\"_blank\" rel=\"noopener\">\n Login\n </a>','Woo Shop V1 Header','','publish','closed','closed','','user-header-wooshop-v1-header','','','2023-01-10 11:00:02','2023-01-10 11:00:02','',0,'https://nicktesting.kinsta.cloud/shopdiko1/?wpr_templates=user-header-woo-shop-v1-header',0,'wpr_templates','',0),(340,1,'2022-06-08 12:36:17','2022-06-08 12:36:17','<p>SubscriptionFlow Demo</p> \n <style>/*! elementor - v3.9.0 - 06-12-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: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>','Woo Shop V1 Footer','','publish','closed','closed','','user-footer-wooshop-v1-footer','','','2023-01-10 11:01:09','2023-01-10 11:01:09','',0,'https://nicktesting.kinsta.cloud/shopdiko1/?wpr_templates=user-footer-woo-shop-v1-footer',0,'wpr_templates','',0),(351,1,'2022-06-08 12:48:00','2022-06-08 12:48:00','<h2>No Posts Found!</h2>','Woo Shop V1 Shop','','publish','closed','closed','','user-product_archive-wooshop-v1-shop','','','2022-06-08 12:48:00','2022-06-08 12:48:00','',0,'https://nicktesting.kinsta.cloud/shopdiko1/?wpr_templates=user-product_archive-woo-shop-v1-products',0,'wpr_templates','',0),(409,1,'2022-06-09 09:48:52','2022-06-09 09:48:52','<strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.','Shirt weekly Subscription','Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.','publish','open','closed','','shirt-weekly-subscription','','','2023-01-10 08:27:23','2023-01-10 08:27:23','',0,'https://nicktesting.kinsta.cloud/shopdiko1/?post_type=product&p=409',0,'product','',0),(1158,1,'2022-06-15 07:41:41','2022-06-15 07:41:41','<style>/*! elementor - v3.6.4 - 13-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style> \n <style>/*! elementor - v3.6.4 - 13-04-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 Us</h2> \n <h2>Kagon Brand History</h2> \n <p>Dwelling and speedily ignorant any steepest. Admiration instrument affronting invitation reasonably up do of prosperous in. Shy saw declared age debating ecstatic man. Call in so want pure rank am dear were. Remarkably to continuing in surrounded diminution on. In unfeeling existence objection immediate repulsive on he in. Imprudence comparison uncommonly me he difficulty diminution resolution. Likewise proposal differed scarcely dwelling as on raillery. September few dependent extremity own continued and ten prevailed attending. Early to weeks we could.</p> \n <style>/*! elementor - v3.6.4 - 13-04-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=\"666\" height=\"94\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/genevieve-whittington.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/genevieve-whittington.png 666w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/genevieve-whittington-300x42.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/genevieve-whittington-600x85.png 600w\" sizes=\"(max-width: 666px) 100vw, 666px\" /> \n <img width=\"700\" height=\"419\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-32.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-32.jpg 700w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-32-300x180.jpg 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-32-600x359.jpg 600w\" sizes=\"(max-width: 700px) 100vw, 700px\" /> \n <h2>What We Do?</h2> \n <p>Dwelling and speedily ignorant any steepest. Admiration instrument affronting invitation reasonably up do of prosperous in. Shy saw declared age debating ecstatic man. Call in so want pure rank am dear were. Remarkably to continuing.</p> \n One Piece\n 0\n %\n Luxury\n 0\n %\n Tropical\n 0\n %\n Sets\n 0\n %\n <style>/*! elementor - v3.6.4 - 13-04-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}</style> \n <h2>Frequently Asked Questions</h2> \n <style>/*! elementor - v3.6.4 - 13-04-2022 */\n.elementor-accordion{text-align:left}.elementor-accordion .elementor-accordion-item{border:1px solid #d4d4d4}.elementor-accordion .elementor-accordion-item+.elementor-accordion-item{border-top:none}.elementor-accordion .elementor-tab-title{margin:0;padding:15px 20px;font-weight:700;line-height:1;cursor:pointer;outline:none}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{display:inline-block;width:1.5em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon svg{width:1em;height:1em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-right{float:right;text-align:right}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-left{float:left;text-align:left}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-closed{display:block}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-opened,.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-closed{display:none}.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-opened{display:block}.elementor-accordion .elementor-tab-content{display:none;padding:15px 20px;border-top:1px solid #d4d4d4}@media (max-width:767px){.elementor-accordion .elementor-tab-title{padding:12px 15px}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{width:1.2em}.elementor-accordion .elementor-tab-content{padding:7px 15px}}</style> \n <a href=\"\">Can I purchase a return shipping label?</a>\n <p>Yes! Fashion Nova offers return shipping labels for US customers. Using return shipping labels is the recommended way to return your item to Fashion Nova, as you will be able to track your return and receive your credit much more quickly than if you were to send your return back yourself.</p><p>Return shipping labels can be purchased for $3.99 if you are returning a single item or for $7.99 if you are returning multiple items. Return shipping labels can be purchased and all returns can be submitted in our Returns Portal.</p>\n <a href=\"\">Can I exchange items?</a>\n <p>We do not offer exchanges but we welcome you to return your item(s) by mail in accordance with our Return Policy by using our online returns portal and repurchasing any available item(s) on our site.</p>\n <a href=\"\">Should I know anything else about the Online Return Policy?</a>\n <ul><li>Items must be unworn, unwashed, and have original tags attached and returned in their original packaging.</li><li>We are not liable for any return packages that may become lost or stolen in-transit. Please keep your proof of postage and/or return tracking number when shipping back your returns.</li><li>All returns must include an order packing slip or return invoice from Online Return Portal that clearly indicates which items are being returned. <b>If this is not filled out correctly, your return may experience issues in processing.</b></li><li>Damaged, defective, or incorrect items must be reported within 14 days of delivery.</li><li>Return drop-offs are not accepted at our DC or corporate office.</li></ul>\n <a href=\"\">What is the Store Returns Policy?</a>\n <p>We do not provide cash refunds. We will accept exchanges within 30 days of the original purchase date with a valid receipt and all tags attached. We will accept returns for store credit only within 30 days of the original purchase date with a valid receipt and all tags attached. The following items are considered “Final Sale” and cannot be exchanged in-store:</p><ul><li>Dresses</li><li>Bodysuits</li><li>Accessories</li><li>Shoes</li><li>Swim & Lingerie</li><li>Beauty</li><li>NovaKids</li><li>Sale Items</li></ul>\n <a href=\"\">What items are final sale?</a>\n <p>All items ending in $.00, .96, .97, and .98, bodysuits, swimwear, undergarments, beauty products, cosmetics, accessories, and “Party Wear” (such as Halloween costumes) are considered final sale, non-returnable and cannot be returned for store credit.</p>\n <img width=\"832\" height=\"140\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-6.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-6.png 832w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-6-300x50.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-6-768x129.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-6-600x101.png 600w\" sizes=\"(max-width: 832px) 100vw, 832px\" /> \n <img width=\"810\" height=\"217\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-7.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-7.png 810w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-7-300x80.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-7-768x206.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-7-600x161.png 600w\" sizes=\"(max-width: 810px) 100vw, 810px\" /> \n <img width=\"708\" height=\"191\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-5.png 708w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-5-300x81.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-5-600x162.png 600w\" sizes=\"(max-width: 708px) 100vw, 708px\" /> \n <img width=\"596\" height=\"207\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-4.png 596w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-4-300x104.png 300w\" sizes=\"(max-width: 596px) 100vw, 596px\" /> \n <img width=\"832\" height=\"140\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-6.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-6.png 832w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-6-300x50.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-6-768x129.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-6-600x101.png 600w\" sizes=\"(max-width: 832px) 100vw, 832px\" /> \n <img width=\"668\" height=\"182\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-3.png 668w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-3-300x82.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-3-600x163.png 600w\" sizes=\"(max-width: 668px) 100vw, 668px\" /> \n <img width=\"708\" height=\"191\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-5.png 708w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-5-300x81.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-5-600x162.png 600w\" sizes=\"(max-width: 708px) 100vw, 708px\" /> \n <h2>Kagon Team Members</h2> \n <img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-34.jpg\" alt=\"Aniyah O'Gallagher\">\n <h3>Aniyah O\'Gallagher</h3>\n Kagon Tailor\n <img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-36.jpg\" alt=\"Harpreet Padilla\">\n <h3>Harpreet Padilla</h3>\n Kagon Founder\n <img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-37.jpg\" alt=\"Stephanie Emerson\">\n <h3>Stephanie Emerson</h3>\n Kagon Designer\n <img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-35.jpg\" alt=\"Eleanor Blankenship\">\n <h3>Eleanor Blankenship</h3>\n Kagon Marketer\n <form id=\"wpr-mailchimp-form-218ac73\" method=\"POST\" data-api-key=\"\" data-list-id=\"def\">\n <!-- Form Header -->\n <h3>\n GET DISCOUNT INFO </h3>\n <p>Detract yet delight written farther his general. If in so bred at dare rose lose good. Feel and make two real miss use easy. Celebrated delightful an especially increasing.</p>\n <!-- Email Input -->\n <input type=\"email\" name=\"wpr_mailchimp_email\" placeholder=\"sample@mail.com\" required=\"required\">\n <!-- Extra Fields -->\n <!-- Subscribe Button -->\n <button type=\"submit\" id=\"wpr-subscribe-218ac73\" data-loading=\"Subscribing...\">\n Subscribe </button>\n <!-- Success/Error Message -->\n You have been successfully Subscribed!\n Ops! Something went wrong, please try again.\n </form>','About','','publish','closed','closed','','about','','','2022-06-15 07:41:41','2022-06-15 07:41:41','',0,'https://nicktesting.kinsta.cloud/shopdiko1/?page_id=1158',0,'page','',0),(1160,1,'2022-06-15 07:41:58','2022-06-15 07:41:58','<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f1785-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"1785\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8.1\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f1785-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> First Name<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"first-name\" /> </label>\n</p>\n<p><label> Last Name<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"last-name\" /> </label>\n</p>\n<p><label>Email<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Business/Organisation Name<br />\n<input size=\"40\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"business-name\" /> </label>\n</p>\n<p><Label>Phone Number<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"tel\" name=\"Contact-number\" /></label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p><p style=\"display: none !important;\"><label>Δ<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"237\"/></p>\n</form>','Contact','','publish','closed','closed','','contact','','','2023-10-19 13:28:36','2023-10-19 13:28:36','',0,'https://nicktesting.kinsta.cloud/shopdiko1/?page_id=1160',0,'page','',0),(1678,1,'2022-06-06 07:42:22','2022-06-06 07:42:22','<style>/*! elementor - v3.6.4 - 13-04-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>Cart</h2> \n <p>Debating me breeding be answered.</p> \n<form action=\"https://demosites.royal-elementor-addons.com/wooshop-v1/cart-wooshop-v1/\" method=\"post\">\n <table cellspacing=\"0\">\n <thead>\n <tr>\n <th> </th>\n <th>Product</th>\n <th> </th>\n <th>Price</th>\n <th>Quantity</th>\n <th>Subtotal</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <td>\n <a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/cart-wooshop-v1/?remove_item=f7177163c833dff4b38fc8d2872f1ec6&_wpnonce=28d67b86a8\" aria-label=\"Remove this item\" data-product_id=\"44\" data-product_sku=\"123456\">×</a> </td>\n <td>\n <a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/pink-paradise/\"><img width=\"300\" height=\"300\" src=\"https://demosites.royal-elementor-addons.com/wooshop-v1/wp-content/uploads/sites/49/2022/06/pic-7-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demosites.royal-elementor-addons.com/wooshop-v1/wp-content/uploads/sites/49/2022/06/pic-7-300x300.jpg 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-7-250x150.jpg 150w, https://demosites.royal-elementor-addons.com/wooshop-v1/wp-content/uploads/sites/49/2022/06/pic-7-768x768.jpg 768w, https://demosites.royal-elementor-addons.com/wooshop-v1/wp-content/uploads/sites/49/2022/06/pic-7-450x450.jpg 450w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-7-2.jpg 600w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-7-200x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a> </td>\n <td data-title=\"Product\">\n <a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/pink-paradise/\">Simple Easy Peasy Tank</a> </td>\n <td data-title=\"Price\">\n <bdi>$34.99</bdi> </td>\n <td data-title=\"Quantity\">\n <label for=\"quantity_62dfbbb5afebd\">Simple Easy Peasy Tank quantity</label>\n <input\n type=\"number\"\n id=\"quantity_62dfbbb5afebd\"\n class=\"input-text qty text\"\n step=\"1\"\n min=\"0\"\n max=\"\"\n name=\"cart[f7177163c833dff4b38fc8d2872f1ec6][qty]\"\n value=\"2\"\n title=\"Qty\"\n size=\"4\"\n placeholder=\"\"\n inputmode=\"numeric\"\n autocomplete=\"off\"\n />\n </td>\n <td data-title=\"Subtotal\">\n <bdi>$69.98</bdi> </td>\n </tr>\n <tr>\n <td>\n <a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/cart-wooshop-v1/?remove_item=d82c8d1619ad8176d665453cfb2e55f0&_wpnonce=28d67b86a8\" aria-label=\"Remove this item\" data-product_id=\"53\" data-product_sku=\"234567\">×</a> </td>\n <td>\n <a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/evolve-antares-activewear/\"><img width=\"300\" height=\"300\" src=\"https://demosites.royal-elementor-addons.com/wooshop-v1/wp-content/uploads/sites/49/2022/06/pic-9-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demosites.royal-elementor-addons.com/wooshop-v1/wp-content/uploads/sites/49/2022/06/pic-9-300x300.jpg 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-9-250x150.jpg 150w, https://demosites.royal-elementor-addons.com/wooshop-v1/wp-content/uploads/sites/49/2022/06/pic-9-768x768.jpg 768w, https://demosites.royal-elementor-addons.com/wooshop-v1/wp-content/uploads/sites/49/2022/06/pic-9-450x450.jpg 450w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-9-2.jpg 600w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-9-200x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a> </td>\n <td data-title=\"Product\">\n <a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/evolve-antares-activewear/\">Evolve Antares Activewear</a> </td>\n <td data-title=\"Price\">\n <bdi>$90.00</bdi> </td>\n <td data-title=\"Quantity\">\n <label for=\"quantity_62dfbbb5b05b6\">Evolve Antares Activewear quantity</label>\n <input\n type=\"number\"\n id=\"quantity_62dfbbb5b05b6\"\n class=\"input-text qty text\"\n step=\"1\"\n min=\"0\"\n max=\"\"\n name=\"cart[d82c8d1619ad8176d665453cfb2e55f0][qty]\"\n value=\"5\"\n title=\"Qty\"\n size=\"4\"\n placeholder=\"\"\n inputmode=\"numeric\"\n autocomplete=\"off\"\n />\n </td>\n <td data-title=\"Subtotal\">\n <bdi>$450.00</bdi> </td>\n </tr>\n <tr>\n <td>\n <a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/cart-wooshop-v1/?remove_item=e2c420d928d4bf8ce0ff2ec19b371514&_wpnonce=28d67b86a8\" aria-label=\"Remove this item\" data-product_id=\"71\" data-product_sku=\"345678\">×</a> </td>\n <td>\n <a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/knot-yours-long-sleeve/\"><img width=\"300\" height=\"300\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-12-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-12-300x300.jpg 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-12-250x150.jpg 150w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-12-768x768.jpg 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-12-450x450.jpg 450w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-12-2.jpg 600w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-12-200x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a> </td>\n <td data-title=\"Product\">\n <a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/knot-yours-long-sleeve/\">Knot Yours Long Sleeve</a> </td>\n <td data-title=\"Price\">\n <bdi>$75.00</bdi> </td>\n <td data-title=\"Quantity\">\n <label for=\"quantity_62dfbbb5b09fe\">Knot Yours Long Sleeve quantity</label>\n <input\n type=\"number\"\n id=\"quantity_62dfbbb5b09fe\"\n class=\"input-text qty text\"\n step=\"1\"\n min=\"0\"\n max=\"\"\n name=\"cart[e2c420d928d4bf8ce0ff2ec19b371514][qty]\"\n value=\"1\"\n title=\"Qty\"\n size=\"4\"\n placeholder=\"\"\n inputmode=\"numeric\"\n autocomplete=\"off\"\n />\n </td>\n <td data-title=\"Subtotal\">\n <bdi>$75.00</bdi> </td>\n </tr>\n <tr>\n <td>\n <a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/cart-wooshop-v1/?remove_item=f4f6dce2f3a0f9dada0c2b5b66452017&_wpnonce=28d67b86a8\" aria-label=\"Remove this item\" data-product_id=\"407\" data-product_sku=\"6745643543\">×</a> </td>\n <td>\n <a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/angelic-moments-mini-dress/\"><img width=\"300\" height=\"300\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-26-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-26-300x300.jpg 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-26-150x150.jpg 150w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-26-768x768.jpg 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-26-450x450.jpg 450w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-26-600x600.jpg 600w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-26-100x100.jpg 100w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-26.jpg 800w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a> </td>\n <td data-title=\"Product\">\n <a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/angelic-moments-mini-dress/\">Angelic Moments Mini Dress</a> </td>\n <td data-title=\"Price\">\n <bdi>$110.00</bdi> </td>\n <td data-title=\"Quantity\">\n <label for=\"quantity_62dfbbb5b0dd8\">Angelic Moments Mini Dress quantity</label>\n <input\n type=\"number\"\n id=\"quantity_62dfbbb5b0dd8\"\n class=\"input-text qty text\"\n step=\"1\"\n min=\"0\"\n max=\"\"\n name=\"cart[f4f6dce2f3a0f9dada0c2b5b66452017][qty]\"\n value=\"1\"\n title=\"Qty\"\n size=\"4\"\n placeholder=\"\"\n inputmode=\"numeric\"\n autocomplete=\"off\"\n />\n </td>\n <td data-title=\"Subtotal\">\n <bdi>$110.00</bdi> </td>\n </tr>\n <tr>\n <td colspan=\"6\">\n <button type=\"submit\" name=\"update_cart\" value=\"Update Cart\">Update Cart</button>\n <input type=\"hidden\" id=\"woocommerce-cart-nonce\" name=\"woocommerce-cart-nonce\" value=\"28d67b86a8\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wooshop-v1/wp-admin/admin-ajax.php\" /> </td>\n </tr>\n </tbody>\n </table>\n <input type=\"text\" name=\"coupon_code\" id=\"coupon_code\" value=\"\" placeholder=\"Coupon code\" />\n <button name=\"apply_coupon\" type=\"submit\" value=\"Apply coupon\">Apply coupon</button>\n </form>\n <h2>Cart Totals</h2>\n <table cellspacing=\"0\">\n <tr>\n <th>Subtotal</th>\n <td data-title=\"Subtotal\"><bdi>$704.98</bdi></td>\n </tr>\n <tr>\n <th>Total</th>\n <td data-title=\"Total\"><strong><bdi>$704.98</bdi></strong> </td>\n </tr>\n </table>\n<a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/checkout-wooshop-v1/\">\n Proceed to Checkout</a>','Cart','','publish','closed','closed','','cart','','','2022-12-07 11:07:15','2022-12-07 11:07:15','',0,'https://nicktesting.kinsta.cloud/shopdiko1/?page_id=10',0,'page','',0),(1679,1,'2022-06-06 07:42:22','2022-06-06 07:42:22','<style>/*! elementor - v3.6.4 - 13-04-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>Checkout</h2> \n <p>Debating me breeding beautiful answered.</p> \n Have a coupon? <a href=\"#\">Click here to enter your code</a> \n<form method=\"post\" style=\"display:none\">\n <p>If you have a coupon code, please apply it below.</p>\n <p>\n <input type=\"text\" name=\"coupon_code\" placeholder=\"Coupon code\" id=\"coupon_code\" value=\"\" />\n </p>\n <p>\n <button type=\"submit\" name=\"apply_coupon\" value=\"Apply coupon\">Apply coupon</button>\n </p>\n</form>\n<form name=\"checkout\" method=\"post\" action=\"https://demosites.royal-elementor-addons.com/wooshop-v1/checkout-wooshop-v1/\" enctype=\"multipart/form-data\">\n <h3>Billing details</h3>\n <p id=\"billing_first_name_field\" data-priority=\"10\"><label for=\"billing_first_name\">First name <abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_first_name\" id=\"billing_first_name\" placeholder=\"\" value=\"\" autocomplete=\"given-name\" /></p><p id=\"billing_last_name_field\" data-priority=\"20\"><label for=\"billing_last_name\">Last name <abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_last_name\" id=\"billing_last_name\" placeholder=\"\" value=\"\" autocomplete=\"family-name\" /></p><p id=\"billing_company_field\" data-priority=\"30\"><label for=\"billing_company\">Company name (optional)</label><input type=\"text\" name=\"billing_company\" id=\"billing_company\" placeholder=\"\" value=\"\" autocomplete=\"organization\" /></p><p id=\"billing_country_field\" data-priority=\"40\"><label for=\"billing_country\">Country / Region <abbr title=\"required\">*</abbr></label><select name=\"billing_country\" id=\"billing_country\" autocomplete=\"country\" data-placeholder=\"Select a country / region…\" data-label=\"Country / Region\"><option value=\"\">Select a country / region…</option><option value=\"AF\" >Afghanistan</option><option value=\"AX\" >Åland Islands</option><option value=\"AL\" >Albania</option><option value=\"DZ\" >Algeria</option><option value=\"AS\" >American Samoa</option><option value=\"AD\" >Andorra</option><option value=\"AO\" >Angola</option><option value=\"AI\" >Anguilla</option><option value=\"AQ\" >Antarctica</option><option value=\"AG\" >Antigua and Barbuda</option><option value=\"AR\" >Argentina</option><option value=\"AM\" >Armenia</option><option value=\"AW\" >Aruba</option><option value=\"AU\" >Australia</option><option value=\"AT\" >Austria</option><option value=\"AZ\" >Azerbaijan</option><option value=\"BS\" >Bahamas</option><option value=\"BH\" >Bahrain</option><option value=\"BD\" >Bangladesh</option><option value=\"BB\" >Barbados</option><option value=\"BY\" >Belarus</option><option value=\"PW\" >Belau</option><option value=\"BE\" >Belgium</option><option value=\"BZ\" >Belize</option><option value=\"BJ\" >Benin</option><option value=\"BM\" >Bermuda</option><option value=\"BT\" >Bhutan</option><option value=\"BO\" >Bolivia</option><option value=\"BQ\" >Bonaire, Saint Eustatius and Saba</option><option value=\"BA\" >Bosnia and Herzegovina</option><option value=\"BW\" >Botswana</option><option value=\"BV\" >Bouvet Island</option><option value=\"BR\" >Brazil</option><option value=\"IO\" >British Indian Ocean Territory</option><option value=\"BN\" >Brunei</option><option value=\"BG\" >Bulgaria</option><option value=\"BF\" >Burkina Faso</option><option value=\"BI\" >Burundi</option><option value=\"KH\" >Cambodia</option><option value=\"CM\" >Cameroon</option><option value=\"CA\" >Canada</option><option value=\"CV\" >Cape Verde</option><option value=\"KY\" >Cayman Islands</option><option value=\"CF\" >Central African Republic</option><option value=\"TD\" >Chad</option><option value=\"CL\" >Chile</option><option value=\"CN\" >China</option><option value=\"CX\" >Christmas Island</option><option value=\"CC\" >Cocos (Keeling) Islands</option><option value=\"CO\" >Colombia</option><option value=\"KM\" >Comoros</option><option value=\"CG\" >Congo (Brazzaville)</option><option value=\"CD\" >Congo (Kinshasa)</option><option value=\"CK\" >Cook Islands</option><option value=\"CR\" >Costa Rica</option><option value=\"HR\" >Croatia</option><option value=\"CU\" >Cuba</option><option value=\"CW\" >Curaçao</option><option value=\"CY\" >Cyprus</option><option value=\"CZ\" >Czech Republic</option><option value=\"DK\" >Denmark</option><option value=\"DJ\" >Djibouti</option><option value=\"DM\" >Dominica</option><option value=\"DO\" >Dominican Republic</option><option value=\"EC\" >Ecuador</option><option value=\"EG\" >Egypt</option><option value=\"SV\" >El Salvador</option><option value=\"GQ\" >Equatorial Guinea</option><option value=\"ER\" >Eritrea</option><option value=\"EE\" >Estonia</option><option value=\"SZ\" >Eswatini</option><option value=\"ET\" >Ethiopia</option><option value=\"FK\" >Falkland Islands</option><option value=\"FO\" >Faroe Islands</option><option value=\"FJ\" >Fiji</option><option value=\"FI\" >Finland</option><option value=\"FR\" >France</option><option value=\"GF\" >French Guiana</option><option value=\"PF\" >French Polynesia</option><option value=\"TF\" >French Southern Territories</option><option value=\"GA\" >Gabon</option><option value=\"GM\" >Gambia</option><option value=\"GE\" >Georgia</option><option value=\"DE\" >Germany</option><option value=\"GH\" >Ghana</option><option value=\"GI\" >Gibraltar</option><option value=\"GR\" >Greece</option><option value=\"GL\" >Greenland</option><option value=\"GD\" >Grenada</option><option value=\"GP\" >Guadeloupe</option><option value=\"GU\" >Guam</option><option value=\"GT\" >Guatemala</option><option value=\"GG\" >Guernsey</option><option value=\"GN\" >Guinea</option><option value=\"GW\" >Guinea-Bissau</option><option value=\"GY\" >Guyana</option><option value=\"HT\" >Haiti</option><option value=\"HM\" >Heard Island and McDonald Islands</option><option value=\"HN\" >Honduras</option><option value=\"HK\" >Hong Kong</option><option value=\"HU\" >Hungary</option><option value=\"IS\" >Iceland</option><option value=\"IN\" >India</option><option value=\"ID\" >Indonesia</option><option value=\"IR\" >Iran</option><option value=\"IQ\" >Iraq</option><option value=\"IE\" >Ireland</option><option value=\"IM\" >Isle of Man</option><option value=\"IL\" >Israel</option><option value=\"IT\" >Italy</option><option value=\"CI\" >Ivory Coast</option><option value=\"JM\" >Jamaica</option><option value=\"JP\" >Japan</option><option value=\"JE\" >Jersey</option><option value=\"JO\" >Jordan</option><option value=\"KZ\" >Kazakhstan</option><option value=\"KE\" >Kenya</option><option value=\"KI\" >Kiribati</option><option value=\"KW\" >Kuwait</option><option value=\"KG\" >Kyrgyzstan</option><option value=\"LA\" >Laos</option><option value=\"LV\" >Latvia</option><option value=\"LB\" >Lebanon</option><option value=\"LS\" >Lesotho</option><option value=\"LR\" >Liberia</option><option value=\"LY\" >Libya</option><option value=\"LI\" >Liechtenstein</option><option value=\"LT\" >Lithuania</option><option value=\"LU\" >Luxembourg</option><option value=\"MO\" >Macao</option><option value=\"MG\" >Madagascar</option><option value=\"MW\" >Malawi</option><option value=\"MY\" >Malaysia</option><option value=\"MV\" >Maldives</option><option value=\"ML\" >Mali</option><option value=\"MT\" >Malta</option><option value=\"MH\" >Marshall Islands</option><option value=\"MQ\" >Martinique</option><option value=\"MR\" >Mauritania</option><option value=\"MU\" >Mauritius</option><option value=\"YT\" >Mayotte</option><option value=\"MX\" >Mexico</option><option value=\"FM\" >Micronesia</option><option value=\"MD\" >Moldova</option><option value=\"MC\" >Monaco</option><option value=\"MN\" >Mongolia</option><option value=\"ME\" >Montenegro</option><option value=\"MS\" >Montserrat</option><option value=\"MA\" >Morocco</option><option value=\"MZ\" >Mozambique</option><option value=\"MM\" >Myanmar</option><option value=\"NA\" >Namibia</option><option value=\"NR\" >Nauru</option><option value=\"NP\" >Nepal</option><option value=\"NL\" >Netherlands</option><option value=\"NC\" >New Caledonia</option><option value=\"NZ\" >New Zealand</option><option value=\"NI\" >Nicaragua</option><option value=\"NE\" >Niger</option><option value=\"NG\" >Nigeria</option><option value=\"NU\" >Niue</option><option value=\"NF\" >Norfolk Island</option><option value=\"KP\" >North Korea</option><option value=\"MK\" >North Macedonia</option><option value=\"MP\" >Northern Mariana Islands</option><option value=\"NO\" >Norway</option><option value=\"OM\" >Oman</option><option value=\"PK\" >Pakistan</option><option value=\"PS\" >Palestinian Territory</option><option value=\"PA\" >Panama</option><option value=\"PG\" >Papua New Guinea</option><option value=\"PY\" >Paraguay</option><option value=\"PE\" >Peru</option><option value=\"PH\" >Philippines</option><option value=\"PN\" >Pitcairn</option><option value=\"PL\" >Poland</option><option value=\"PT\" >Portugal</option><option value=\"PR\" >Puerto Rico</option><option value=\"QA\" >Qatar</option><option value=\"RE\" >Reunion</option><option value=\"RO\" >Romania</option><option value=\"RU\" >Russia</option><option value=\"RW\" >Rwanda</option><option value=\"ST\" >São Tomé and Príncipe</option><option value=\"BL\" >Saint Barthélemy</option><option value=\"SH\" >Saint Helena</option><option value=\"KN\" >Saint Kitts and Nevis</option><option value=\"LC\" >Saint Lucia</option><option value=\"SX\" >Saint Martin (Dutch part)</option><option value=\"MF\" >Saint Martin (French part)</option><option value=\"PM\" >Saint Pierre and Miquelon</option><option value=\"VC\" >Saint Vincent and the Grenadines</option><option value=\"WS\" >Samoa</option><option value=\"SM\" >San Marino</option><option value=\"SA\" >Saudi Arabia</option><option value=\"SN\" >Senegal</option><option value=\"RS\" >Serbia</option><option value=\"SC\" >Seychelles</option><option value=\"SL\" >Sierra Leone</option><option value=\"SG\" >Singapore</option><option value=\"SK\" >Slovakia</option><option value=\"SI\" >Slovenia</option><option value=\"SB\" >Solomon Islands</option><option value=\"SO\" >Somalia</option><option value=\"ZA\" >South Africa</option><option value=\"GS\" >South Georgia/Sandwich Islands</option><option value=\"KR\" >South Korea</option><option value=\"SS\" >South Sudan</option><option value=\"ES\" >Spain</option><option value=\"LK\" >Sri Lanka</option><option value=\"SD\" >Sudan</option><option value=\"SR\" >Suriname</option><option value=\"SJ\" >Svalbard and Jan Mayen</option><option value=\"SE\" >Sweden</option><option value=\"CH\" >Switzerland</option><option value=\"SY\" >Syria</option><option value=\"TW\" >Taiwan</option><option value=\"TJ\" >Tajikistan</option><option value=\"TZ\" >Tanzania</option><option value=\"TH\" >Thailand</option><option value=\"TL\" >Timor-Leste</option><option value=\"TG\" >Togo</option><option value=\"TK\" >Tokelau</option><option value=\"TO\" >Tonga</option><option value=\"TT\" >Trinidad and Tobago</option><option value=\"TN\" >Tunisia</option><option value=\"TR\" >Turkey</option><option value=\"TM\" >Turkmenistan</option><option value=\"TC\" >Turks and Caicos Islands</option><option value=\"TV\" >Tuvalu</option><option value=\"UG\" >Uganda</option><option value=\"UA\" >Ukraine</option><option value=\"AE\" >United Arab Emirates</option><option value=\"GB\" >United Kingdom (UK)</option><option value=\"US\" selected=\'selected\'>United States (US)</option><option value=\"UM\" >United States (US) Minor Outlying Islands</option><option value=\"UY\" >Uruguay</option><option value=\"UZ\" >Uzbekistan</option><option value=\"VU\" >Vanuatu</option><option value=\"VA\" >Vatican</option><option value=\"VE\" >Venezuela</option><option value=\"VN\" >Vietnam</option><option value=\"VG\" >Virgin Islands (British)</option><option value=\"VI\" >Virgin Islands (US)</option><option value=\"WF\" >Wallis and Futuna</option><option value=\"EH\" >Western Sahara</option><option value=\"YE\" >Yemen</option><option value=\"ZM\" >Zambia</option><option value=\"ZW\" >Zimbabwe</option></select><noscript><button type=\"submit\" name=\"woocommerce_checkout_update_totals\" value=\"Update country / region\">Update country / region</button></noscript></p><p id=\"billing_address_1_field\" data-priority=\"50\"><label for=\"billing_address_1\">Street address <abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_address_1\" id=\"billing_address_1\" placeholder=\"House number and street name\" value=\"\" autocomplete=\"address-line1\" /></p><p id=\"billing_address_2_field\" data-priority=\"60\"><label for=\"billing_address_2\">Apartment, suite, unit, etc. (optional)</label><input type=\"text\" name=\"billing_address_2\" id=\"billing_address_2\" placeholder=\"Apartment, suite, unit, etc. (optional)\" value=\"\" autocomplete=\"address-line2\" /></p><p id=\"billing_city_field\" data-priority=\"70\"><label for=\"billing_city\">Town / City <abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_city\" id=\"billing_city\" placeholder=\"\" value=\"\" autocomplete=\"address-level2\" /></p><p id=\"billing_state_field\" data-priority=\"80\"><label for=\"billing_state\">State <abbr title=\"required\">*</abbr></label><select name=\"billing_state\" id=\"billing_state\" autocomplete=\"address-level1\" data-placeholder=\"Select an option…\" data-input-classes=\"\" data-label=\"State\">\n <option value=\"\">Select an option…</option><option value=\"AL\" >Alabama</option><option value=\"AK\" >Alaska</option><option value=\"AZ\" >Arizona</option><option value=\"AR\" >Arkansas</option><option value=\"CA\" selected=\'selected\'>California</option><option value=\"CO\" >Colorado</option><option value=\"CT\" >Connecticut</option><option value=\"DE\" >Delaware</option><option value=\"DC\" >District Of Columbia</option><option value=\"FL\" >Florida</option><option value=\"GA\" >Georgia</option><option value=\"HI\" >Hawaii</option><option value=\"ID\" >Idaho</option><option value=\"IL\" >Illinois</option><option value=\"IN\" >Indiana</option><option value=\"IA\" >Iowa</option><option value=\"KS\" >Kansas</option><option value=\"KY\" >Kentucky</option><option value=\"LA\" >Louisiana</option><option value=\"ME\" >Maine</option><option value=\"MD\" >Maryland</option><option value=\"MA\" >Massachusetts</option><option value=\"MI\" >Michigan</option><option value=\"MN\" >Minnesota</option><option value=\"MS\" >Mississippi</option><option value=\"MO\" >Missouri</option><option value=\"MT\" >Montana</option><option value=\"NE\" >Nebraska</option><option value=\"NV\" >Nevada</option><option value=\"NH\" >New Hampshire</option><option value=\"NJ\" >New Jersey</option><option value=\"NM\" >New Mexico</option><option value=\"NY\" >New York</option><option value=\"NC\" >North Carolina</option><option value=\"ND\" >North Dakota</option><option value=\"OH\" >Ohio</option><option value=\"OK\" >Oklahoma</option><option value=\"OR\" >Oregon</option><option value=\"PA\" >Pennsylvania</option><option value=\"RI\" >Rhode Island</option><option value=\"SC\" >South Carolina</option><option value=\"SD\" >South Dakota</option><option value=\"TN\" >Tennessee</option><option value=\"TX\" >Texas</option><option value=\"UT\" >Utah</option><option value=\"VT\" >Vermont</option><option value=\"VA\" >Virginia</option><option value=\"WA\" >Washington</option><option value=\"WV\" >West Virginia</option><option value=\"WI\" >Wisconsin</option><option value=\"WY\" >Wyoming</option><option value=\"AA\" >Armed Forces (AA)</option><option value=\"AE\" >Armed Forces (AE)</option><option value=\"AP\" >Armed Forces (AP)</option></select></p><p id=\"billing_postcode_field\" data-priority=\"90\"><label for=\"billing_postcode\">ZIP Code <abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_postcode\" id=\"billing_postcode\" placeholder=\"\" value=\"\" autocomplete=\"postal-code\" /></p><p id=\"billing_phone_field\" data-priority=\"100\"><label for=\"billing_phone\">Phone <abbr title=\"required\">*</abbr></label><input type=\"tel\" name=\"billing_phone\" id=\"billing_phone\" placeholder=\"\" value=\"\" autocomplete=\"tel\" /></p><p id=\"billing_email_field\" data-priority=\"110\"><label for=\"billing_email\">Email address <abbr title=\"required\">*</abbr></label><input type=\"email\" name=\"billing_email\" id=\"billing_email\" placeholder=\"\" value=\"royalelementoraddons@gmail.com\" autocomplete=\"email username\" /></p> \n <h3>Additional information</h3>\n <p id=\"order_comments_field\" data-priority=\"\"><label for=\"order_comments\">Order notes (optional)</label><textarea name=\"order_comments\" id=\"order_comments\" placeholder=\"Notes about your order, e.g. special notes for delivery.\" rows=\"2\" cols=\"5\"></textarea></p> \n <h3 id=\"order_review_heading\">Your order</h3>\n <table>\n <thead>\n <tr>\n <th>Product</th>\n <th>Subtotal</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <td>\n Simple Easy Peasy Tank <strong>× 1</strong> </td>\n <td>\n <bdi>$34.99</bdi> </td>\n </tr>\n <tr>\n <td>\n Evolve Antares Activewear <strong>× 2</strong> </td>\n <td>\n <bdi>$180.00</bdi> </td>\n </tr>\n </tbody>\n <tfoot>\n <tr>\n <th>Subtotal</th>\n <td><bdi>$214.99</bdi></td>\n </tr>\n <tr>\n <th>Total</th>\n <td><strong><bdi>$214.99</bdi></strong> </td>\n </tr>\n </tfoot>\n</table>\n <ul>\n <li>\n <input id=\"payment_method_bacs\" type=\"radio\" name=\"payment_method\" value=\"bacs\" checked=\'checked\' data-order_button_text=\"\" />\n <label for=\"payment_method_bacs\">\n Direct bank transfer </label>\n <p>Make your payment directly into our bank account. Please use your Order ID as the payment reference. Your order will not be shipped until the funds have cleared in our account.</p>\n </li>\n<li>\n <input id=\"payment_method_cheque\" type=\"radio\" name=\"payment_method\" value=\"cheque\" data-order_button_text=\"\" />\n <label for=\"payment_method_cheque\">\n Check payments </label>\n <p>Please send a check to Store Name, Store Street, Store Town, Store State / County, Store Postcode.</p>\n </li>\n<li>\n <input id=\"payment_method_cod\" type=\"radio\" name=\"payment_method\" value=\"cod\" data-order_button_text=\"\" />\n <label for=\"payment_method_cod\">\n Cash on delivery </label>\n <p>Pay with cash upon delivery.</p>\n </li>\n </ul>\n <noscript>\n Since your browser does not support JavaScript, or it is disabled, please ensure you click the <em>Update Totals</em> button before placing your order. You may be charged more than the amount stated above if you fail to do so. <br/><button type=\"submit\" name=\"woocommerce_checkout_update_totals\" value=\"Update totals\">Update totals</button>\n </noscript>\n <button type=\"submit\" name=\"woocommerce_checkout_place_order\" id=\"place_order\" value=\"Place order\" data-value=\"Place order\">Place order</button>\n <input type=\"hidden\" id=\"woocommerce-process-checkout-nonce\" name=\"woocommerce-process-checkout-nonce\" value=\"d49fbf0683\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wooshop-v1/wp-admin/admin-ajax.php\" /> \n</form>','Checkout','','publish','closed','closed','','checkout','','','2022-12-07 11:07:11','2022-12-07 11:07:11','',0,'https://nicktesting.kinsta.cloud/shopdiko1/?page_id=11',0,'page','',0),(1680,1,'2022-06-06 07:42:22','2022-06-06 07:42:22','','Shop','','publish','closed','closed','','shop','','','2022-12-07 11:07:03','2022-12-07 11:07:03','',0,'https://nicktesting.kinsta.cloud/shopdiko1/?page_id=9',0,'page','',0),(1785,1,'2022-07-19 11:22:08','2022-07-19 11:22:08','<label> First Name\r\n [text* first-name] </label>\r\n\r\n<label> Last Name\r\n [text* last-name] </label>\r\n\r\n<label>Email\r\n [email* your-email] </label>\r\n\r\n<label> Business/Organisation Name\r\n [text business-name] </label>\r\n\r\n<Label>Phone Number\r\n[tel* Contact-number]</label>\r\n\r\n[submit \"Submit\"]\n1\n[_site_title] \"[your-subject]\"\n[_site_admin_email]\n[_site_admin_email]\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\nReply-To: [your-email]\n\n\n\n\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@nicktesting.kinsta.cloud>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\nReply-To: [_site_admin_email]\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nskip_mail: on','CF7','','publish','closed','closed','','contact-form-1_copy','','','2023-10-19 13:59:15','2023-10-19 13:59:15','',0,'https://demosites.royal-elementor-addons.com/wooshop-v1/?post_type=wpcf7_contact_form&p=1785',0,'wpcf7_contact_form','',0),(1884,1,'2022-07-26 05:36:58','2022-07-26 05:36:58','','Default Kit','','publish','closed','closed','','default-kit-2','','','2022-07-26 05:36:58','2022-07-26 05:36:58','',0,'https://demosites.royal-elementor-addons.com/wooshop-v1/?elementor_library=default-kit',0,'elementor_library','',0),(1943,1,'2022-08-04 09:18:29','2022-08-04 09:18:29','<style>/*! elementor - v3.7.0 - 08-08-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>Royal Addons Woo Builder</h2> \n <p style=\"text-align: center;\">Every Part of this KIT is created with Elementor <strong>FREE</strong> & Royal Elementor addons theme builder, so you can <strong>Change & Customize everything</strong> with Elementor Visual Editor. Learn more about <a href=\"https://www.youtube.com/watch?v=cwkhwO_rPuo\" target=\"_blank\" rel=\"noopener\">Theme builder</a> & <a href=\"https://www.youtube.com/watch?v=f_3tNiBC3dw\" target=\"_blank\" rel=\"noopener\">Woocomerce Builder</a></p> \n Thank You! That's Amazing!','REA theme builder banner','','publish','closed','closed','','user-popup-rea-theme-builder-banner','','','2022-08-04 09:18:29','2022-08-04 09:18:29','',0,'https://demosites.royal-elementor-addons.com/wooshop-v1/?wpr_templates=user-popup-rea-theme-builder-banner',0,'wpr_templates','',0),(2082,1,'2022-11-09 06:31:48','2022-11-09 06:31:48','<style>/*! elementor - v3.7.0 - 08-08-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>Sale</h2> \n <style>/*! elementor - v3.7.0 - 08-08-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%);-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}</style> \n <ul><li>All<em></em></li><li>Activewear<em></em></li><li data-role=\"parent\">Dress<em></em></li><li data-role=\"parent\">Swimsuits<em></em></li><ul data-parent=\".product_cat-swimsuits\"><li data-role=\"back\"> Back</li><li data-role=\"sub\">Top Bra<em></em></li><li data-role=\"sub\">Bikini<em></em></li></ul><ul data-parent=\".product_cat-dress\"><li data-role=\"back\"> Back</li><li data-role=\"sub\">Skirt<em></em></li><li data-role=\"sub\">Maxi<em></em></li></ul></ul><section data-settings=\"{"layout":"list","columns_desktop":"1","gutter_hr":20,"gutter_vr":14,"animation":"default","animation_duration":0.29999999999999999,"animation_delay":0.10000000000000001,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.29999999999999999,"filters_animation_delay":0.10000000000000001,"pagination_type":"load-more","pagination_max_pages":1,"media_align":"left","media_width":30,"media_distance":20,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 3><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-27.jpg\" alt=\"Laney Ribbed Maxi Dress\"><h2><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/laney-ribbed-maxi-dress/\">Laney Ribbed Maxi Dress</a></h2><del aria-hidden=\"true\">$110.00</del> <ins>$75.00</ins></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-26.jpg\" alt=\"Angelic Moments Mini Dress\"><h2><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/angelic-moments-mini-dress/\">Angelic Moments Mini Dress</a></h2><del aria-hidden=\"true\">$190.00</del> <ins>$110.00</ins></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-24.jpg\" alt=\"Better With Me Mini Dress\"><h2><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/better-with-me-mini-dress/\">Better With Me Mini Dress</a></h2><del aria-hidden=\"true\">$75.00</del> <ins>$55.00</ins></article></section> \n <h2>Featured</h2> \n <ul><li>All<em></em></li><li>Activewear<em></em></li><li data-role=\"parent\">Dress<em></em></li><li data-role=\"parent\">Swimsuits<em></em></li><ul data-parent=\".product_cat-swimsuits\"><li data-role=\"back\"> Back</li><li data-role=\"sub\">Top Bra<em></em></li><li data-role=\"sub\">Bikini<em></em></li></ul><ul data-parent=\".product_cat-dress\"><li data-role=\"back\"> Back</li><li data-role=\"sub\">Skirt<em></em></li><li data-role=\"sub\">Maxi<em></em></li></ul></ul><section data-settings=\"{"layout":"list","columns_desktop":"1","gutter_hr":20,"gutter_vr":14,"animation":"default","animation_duration":0.29999999999999999,"animation_delay":0.10000000000000001,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.29999999999999999,"filters_animation_delay":0.10000000000000001,"pagination_type":"load-more","pagination_max_pages":1,"media_align":"left","media_width":30,"media_distance":20,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 3><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-12-2.jpg\" alt=\"Knot Yours Long Sleeve\"><h2><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/knot-yours-long-sleeve/\">Knot Yours Long Sleeve</a></h2>$75.00</article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-9-2.jpg\" alt=\"Evolve Antares Activewear\"><h2><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/evolve-antares-activewear/\">Evolve Antares Activewear</a></h2><del aria-hidden=\"true\">$180.00</del> <ins>$90.00</ins></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-7-2.jpg\" alt=\"Simple Easy Peasy Tank\"><h2><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/pink-paradise/\">Simple Easy Peasy Tank</a></h2>$34.99</article></section> \n <h2>Marketing</h2> \n <ul><li><a >Content Analyze </a></li><li><a >Project Management</a>Trending</li><li><a >CEO Documents</a></li><li><a >Pricing Plan</a>Hot</li><li><a >Email Marketing</a></li><li><a >Search Engine Optimization</a></li><li><a >CEO Documents</a></li><li><a >Project Management</a>New</li></ul> \n <a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/shop-wooshop-v1/\"></a> \n <h3>Endless <br>Summer</h3>','wpr-mega-menu-item-1744','','publish','closed','closed','','wpr-mega-menu-item-1744','','','2022-11-09 06:31:48','2022-11-09 06:31:48','',0,'https://demosites.royal-elementor-addons.com/wooshop-v1/?wpr_mega_menu=wpr-mega-menu-item-1744',0,'wpr_mega_menu','',0),(2090,1,'2022-12-06 14:10:00','2022-12-06 14:10:00','<!-- Advanced Slider -->\n <h2>Endless Summer</h2><h3>Bring On The Summer Hit</h3><p>Bed sincerity yet therefore forfeited his certainty neglected questions. Pursuit chamber as elderly amongst on. Distant however warrant farther to of. My justice wishing prudent waiting in be. Comparison age not pianoforte increasing delightful now. Ladies others the six desire age. </p><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/shop-wooshop-v1/\">Explore Collection</a><h2>Endless Summer</h2><h3>Beige Summer Hot Dresses</h3><p>Slider 2 Description Text, Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur laoreet cursus volutpat. Aliquam sit amet ligula et justo tincidunt laoreet non vitae lorem. Ladies others the six desire age. Bred am soon park past read by lain. As excuse eldest no moment. An delight beloved up garrets.</p><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/shop-wooshop-v1/\">Purchase Now</a> \n <svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 283.4 512\" style=\"enable-background:new 0 0 283.4 512;\" xml:space=\"preserve\"><g><polygon points=\"54.5,256.3 283.4,485.1 256.1,512.5 0,256.3 0,256.3 27.2,229 256.1,0 283.4,27.4 \"/></g></svg> \n <svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 283.4 512\" style=\"enable-background:new 0 0 283.4 512;\" xml:space=\"preserve\"><g><polygon points=\"54.5,256.3 283.4,485.1 256.1,512.5 0,256.3 0,256.3 27.2,229 256.1,0 283.4,27.4 \"/></g></svg> \n <style>/*! elementor - v3.6.8 - 27-07-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=\"810\" height=\"217\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-7.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-7.png 810w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-7-300x80.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-7-768x206.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-7-600x161.png 600w\" sizes=\"(max-width: 810px) 100vw, 810px\" /> \n <img width=\"596\" height=\"207\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-4.png 596w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-4-300x104.png 300w\" sizes=\"(max-width: 596px) 100vw, 596px\" /> \n <img width=\"832\" height=\"140\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-6.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-6.png 832w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-6-300x50.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-6-768x129.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-6-600x101.png 600w\" sizes=\"(max-width: 832px) 100vw, 832px\" /> \n <img width=\"668\" height=\"182\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-3.png 668w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-3-300x82.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-3-600x163.png 600w\" sizes=\"(max-width: 668px) 100vw, 668px\" /> \n <img width=\"708\" height=\"191\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-5.png 708w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-5-300x81.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-5-600x162.png 600w\" sizes=\"(max-width: 708px) 100vw, 708px\" /> \n <style>/*! elementor - v3.6.8 - 27-07-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>Featured Products</h2> \n <ul><li>All<em></em></li><li>Activewear<em></em></li><li data-role=\"parent\">Dress<em></em></li><li data-role=\"parent\">Swimsuits<em></em></li><ul data-parent=\".product_cat-swimsuits\"><li data-role=\"back\"> Back</li><li data-role=\"sub\">Top Bra<em></em></li><li data-role=\"sub\">Bikini<em></em></li></ul><ul data-parent=\".product_cat-dress\"><li data-role=\"back\"> Back</li><li data-role=\"sub\">Skirt<em></em></li><li data-role=\"sub\">Maxi<em></em></li></ul></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":20,"gutter_vr":30,"animation":"default","animation_duration":0.29999999999999999,"animation_delay":0.10000000000000001,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.29999999999999999,"filters_animation_delay":0.10000000000000001,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 3><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-12-2.jpg\" alt=\"Knot Yours Long Sleeve\"><h2><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/knot-yours-long-sleeve/\">Knot Yours Long Sleeve</a></h2>$75.00<a rel=\"nofollow\" aria-label=\"Add “Knot Yours Long Sleeve” to your cart\" data-product_id=\"71\" data-product_sku=\"345678\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/knot-yours-long-sleeve//?add-to-cart=71\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-9-2.jpg\" alt=\"Evolve Antares Activewear\"><h2><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/evolve-antares-activewear/\">Evolve Antares Activewear</a></h2><del aria-hidden=\"true\">$180.00</del> <ins>$90.00</ins><a rel=\"nofollow\" aria-label=\"Add “Evolve Antares Activewear” to your cart\" data-product_id=\"53\" data-product_sku=\"234567\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/evolve-antares-activewear//?add-to-cart=53\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-7-2.jpg\" alt=\"Simple Easy Peasy Tank\"><h2><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/pink-paradise/\">Simple Easy Peasy Tank</a></h2>$34.99<a rel=\"nofollow\" aria-label=\"Add “Simple Easy Peasy Tank” to your cart\" data-product_id=\"44\" data-product_sku=\"123456\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/pink-paradise//?add-to-cart=44\">Add to Cart</a></article></section> \n <a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/shop-wooshop-v1/\"></a> \n <h3>Endless <br>Summer</h3>\n <a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/shop-wooshop-v1/\"></a> \n <h3>APP EXCLUSIVE<br> EXTRA 10% OFF!*</h3>\n <p><p>*Excludes Megan Box, beauty & selected lines.</p></p> \n <h2>Sale Products</h2> \n <ul><li>All<em></em></li><li>Activewear<em></em></li><li data-role=\"parent\">Dress<em></em></li><li data-role=\"parent\">Swimsuits<em></em></li><ul data-parent=\".product_cat-swimsuits\"><li data-role=\"back\"> Back</li><li data-role=\"sub\">Top Bra<em></em></li><li data-role=\"sub\">Bikini<em></em></li></ul><ul data-parent=\".product_cat-dress\"><li data-role=\"back\"> Back</li><li data-role=\"sub\">Skirt<em></em></li><li data-role=\"sub\">Maxi<em></em></li></ul></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":20,"gutter_vr":40,"animation":"default","animation_duration":0.29999999999999999,"animation_delay":0.10000000000000001,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.29999999999999999,"filters_animation_delay":0.10000000000000001,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 6><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-27.jpg\" alt=\"Laney Ribbed Maxi Dress\"><h2><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/laney-ribbed-maxi-dress/\">Laney Ribbed Maxi Dress</a></h2><del aria-hidden=\"true\">$110.00</del> <ins>$75.00</ins><a rel=\"nofollow\" aria-label=\"Add “Laney Ribbed Maxi Dress” to your cart\" data-product_id=\"409\" data-product_sku=\"547568769\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/laney-ribbed-maxi-dress//?add-to-cart=409\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-26.jpg\" alt=\"Angelic Moments Mini Dress\"><h2><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/angelic-moments-mini-dress/\">Angelic Moments Mini Dress</a></h2><del aria-hidden=\"true\">$190.00</del> <ins>$110.00</ins><a rel=\"nofollow\" aria-label=\"Add “Angelic Moments Mini Dress” to your cart\" data-product_id=\"407\" data-product_sku=\"6745643543\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/angelic-moments-mini-dress//?add-to-cart=407\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-24.jpg\" alt=\"Better With Me Mini Dress\"><h2><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/better-with-me-mini-dress/\">Better With Me Mini Dress</a></h2><del aria-hidden=\"true\">$75.00</del> <ins>$55.00</ins><a rel=\"nofollow\" aria-label=\"Add “Better With Me Mini Dress” to your cart\" data-product_id=\"404\" data-product_sku=\"32453657\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/better-with-me-mini-dress//?add-to-cart=404\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-22-2.jpg\" alt=\"Chelsea Legging Set\"><h2><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/chelsea-legging-set/\">Chelsea Legging Set</a></h2><del aria-hidden=\"true\">$310.00</del> <ins>$220.00</ins><a rel=\"nofollow\" aria-label=\"Add “Chelsea Legging Set” to your cart\" data-product_id=\"364\" data-product_sku=\"676978686\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/chelsea-legging-set//?add-to-cart=364\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-20-2.jpg\" alt=\"Extrenall Welcome To Paradise\"><h2><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/welcome-to-paradise/\">Extrenall Welcome To Paradise</a></h2><del aria-hidden=\"true\">$110.00</del> <ins>$90.00</ins><a rel=\"nofollow\" aria-label=\"Buy Product\" data-product_id=\"83\" data-product_sku=\"678901\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://royal-elementor-addons.com/\">Buy Product</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-9-2.jpg\" alt=\"Evolve Antares Activewear\"><h2><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/evolve-antares-activewear/\">Evolve Antares Activewear</a></h2><del aria-hidden=\"true\">$180.00</del> <ins>$90.00</ins><a rel=\"nofollow\" aria-label=\"Add “Evolve Antares Activewear” to your cart\" data-product_id=\"53\" data-product_sku=\"234567\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/evolve-antares-activewear//?add-to-cart=53\">Add to Cart</a></article></section> \n <h3>UP TO 70% OFF!* + <br>FREE DELIVERY!</h3>\n <p><p>Answer misery adieus add wooded how nay men before though. <br />Pretended belonging contented mrs suffering favourite you the continual.</p></p> \n <a href=\"https://royal-elementor-addons.com/\">\n Join Us Now \n </a>\n <style>/*! elementor - v3.6.8 - 27-07-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=\"329\" height=\"329\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/icon-2.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Free Shipping</h3><p>Orders Over $500</p> \n <figure><img width=\"329\" height=\"329\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/icon-4-2.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Quick Payment</h3><p>100% Secure Payment</p> \n <figure><img width=\"329\" height=\"329\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/icon-3-2.png\" alt=\"\" loading=\"lazy\" /></figure><h3>24/7 Support</h3><p>Ready For You</p> \n <figure><img width=\"329\" height=\"329\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/icon-1.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Money Return</h3><p>Back Under 7 Days</p> \n <form id=\"wpr-mailchimp-form-70d0b7c\" method=\"POST\" data-api-key=\"\" data-list-id=\"def\">\n <!-- Form Header -->\n <h3>\n GET DISCOUNT INFO </h3>\n <p>Detract yet delight written farther his general. If in so bred at dare rose lose good. Feel and make two real miss use easy. Celebrated delightful an especially increasing.</p>\n <!-- Email Input -->\n <input type=\"email\" name=\"wpr_mailchimp_email\" placeholder=\"sample@mail.com\" required=\"required\">\n <!-- Extra Fields -->\n <!-- Subscribe Button -->\n <button type=\"submit\" id=\"wpr-subscribe-70d0b7c\" data-loading=\"Subscribing...\">\n Subscribe </button>\n <!-- Success/Error Message -->\n You have been successfully Subscribed!\n Ops! Something went wrong, please try again.\n </form>','Home','','inherit','closed','closed','','18-revision-v1','','','2022-12-06 14:10:00','2022-12-06 14:10:00','',18,'https://wordpressdemo.subscriptionflow.com/?p=2090',0,'revision','',0),(2091,1,'2022-12-06 14:10:00','2022-12-06 14:10:00','<!-- Advanced Slider -->\n <h2>Endless Summer</h2><h3>Bring On The Summer Hit</h3><p>Bed sincerity yet therefore forfeited his certainty neglected questions. Pursuit chamber as elderly amongst on. Distant however warrant farther to of. My justice wishing prudent waiting in be. Comparison age not pianoforte increasing delightful now. Ladies others the six desire age. </p><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/shop-wooshop-v1/\">Explore Collection</a><h2>Endless Summer</h2><h3>Beige Summer Hot Dresses</h3><p>Slider 2 Description Text, Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur laoreet cursus volutpat. Aliquam sit amet ligula et justo tincidunt laoreet non vitae lorem. Ladies others the six desire age. Bred am soon park past read by lain. As excuse eldest no moment. An delight beloved up garrets.</p><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/shop-wooshop-v1/\">Purchase Now</a> \n <svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 283.4 512\" style=\"enable-background:new 0 0 283.4 512;\" xml:space=\"preserve\"><g><polygon points=\"54.5,256.3 283.4,485.1 256.1,512.5 0,256.3 0,256.3 27.2,229 256.1,0 283.4,27.4 \"/></g></svg> \n <svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 283.4 512\" style=\"enable-background:new 0 0 283.4 512;\" xml:space=\"preserve\"><g><polygon points=\"54.5,256.3 283.4,485.1 256.1,512.5 0,256.3 0,256.3 27.2,229 256.1,0 283.4,27.4 \"/></g></svg> \n <style>/*! elementor - v3.6.8 - 27-07-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=\"810\" height=\"217\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-7.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-7.png 810w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-7-300x80.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-7-768x206.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-7-600x161.png 600w\" sizes=\"(max-width: 810px) 100vw, 810px\" /> \n <img width=\"596\" height=\"207\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-4.png 596w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-4-300x104.png 300w\" sizes=\"(max-width: 596px) 100vw, 596px\" /> \n <img width=\"832\" height=\"140\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-6.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-6.png 832w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-6-300x50.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-6-768x129.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-6-600x101.png 600w\" sizes=\"(max-width: 832px) 100vw, 832px\" /> \n <img width=\"668\" height=\"182\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-3.png 668w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-3-300x82.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-3-600x163.png 600w\" sizes=\"(max-width: 668px) 100vw, 668px\" /> \n <img width=\"708\" height=\"191\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-5.png 708w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-5-300x81.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-5-600x162.png 600w\" sizes=\"(max-width: 708px) 100vw, 708px\" /> \n <style>/*! elementor - v3.6.8 - 27-07-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>Featured Products</h2> \n <ul><li>All<em></em></li><li>Activewear<em></em></li><li data-role=\"parent\">Dress<em></em></li><li data-role=\"parent\">Swimsuits<em></em></li><ul data-parent=\".product_cat-swimsuits\"><li data-role=\"back\"> Back</li><li data-role=\"sub\">Top Bra<em></em></li><li data-role=\"sub\">Bikini<em></em></li></ul><ul data-parent=\".product_cat-dress\"><li data-role=\"back\"> Back</li><li data-role=\"sub\">Skirt<em></em></li><li data-role=\"sub\">Maxi<em></em></li></ul></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":20,"gutter_vr":30,"animation":"default","animation_duration":0.29999999999999999,"animation_delay":0.10000000000000001,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.29999999999999999,"filters_animation_delay":0.10000000000000001,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 3><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-12-2.jpg\" alt=\"Knot Yours Long Sleeve\"><h2><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/knot-yours-long-sleeve/\">Knot Yours Long Sleeve</a></h2>$75.00<a rel=\"nofollow\" aria-label=\"Add “Knot Yours Long Sleeve” to your cart\" data-product_id=\"71\" data-product_sku=\"345678\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/knot-yours-long-sleeve//?add-to-cart=71\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-9-2.jpg\" alt=\"Evolve Antares Activewear\"><h2><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/evolve-antares-activewear/\">Evolve Antares Activewear</a></h2><del aria-hidden=\"true\">$180.00</del> <ins>$90.00</ins><a rel=\"nofollow\" aria-label=\"Add “Evolve Antares Activewear” to your cart\" data-product_id=\"53\" data-product_sku=\"234567\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/evolve-antares-activewear//?add-to-cart=53\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-7-2.jpg\" alt=\"Simple Easy Peasy Tank\"><h2><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/pink-paradise/\">Simple Easy Peasy Tank</a></h2>$34.99<a rel=\"nofollow\" aria-label=\"Add “Simple Easy Peasy Tank” to your cart\" data-product_id=\"44\" data-product_sku=\"123456\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/pink-paradise//?add-to-cart=44\">Add to Cart</a></article></section> \n <a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/shop-wooshop-v1/\"></a> \n <h3>Endless <br>Summer</h3>\n <a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/shop-wooshop-v1/\"></a> \n <h3>APP EXCLUSIVE<br> EXTRA 10% OFF!*</h3>\n <p><p>*Excludes Megan Box, beauty & selected lines.</p></p> \n <h2>Sale Products</h2> \n <ul><li>All<em></em></li><li>Activewear<em></em></li><li data-role=\"parent\">Dress<em></em></li><li data-role=\"parent\">Swimsuits<em></em></li><ul data-parent=\".product_cat-swimsuits\"><li data-role=\"back\"> Back</li><li data-role=\"sub\">Top Bra<em></em></li><li data-role=\"sub\">Bikini<em></em></li></ul><ul data-parent=\".product_cat-dress\"><li data-role=\"back\"> Back</li><li data-role=\"sub\">Skirt<em></em></li><li data-role=\"sub\">Maxi<em></em></li></ul></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":20,"gutter_vr":40,"animation":"default","animation_duration":0.29999999999999999,"animation_delay":0.10000000000000001,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.29999999999999999,"filters_animation_delay":0.10000000000000001,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 6><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-27.jpg\" alt=\"Laney Ribbed Maxi Dress\"><h2><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/laney-ribbed-maxi-dress/\">Laney Ribbed Maxi Dress</a></h2><del aria-hidden=\"true\">$110.00</del> <ins>$75.00</ins><a rel=\"nofollow\" aria-label=\"Add “Laney Ribbed Maxi Dress” to your cart\" data-product_id=\"409\" data-product_sku=\"547568769\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/laney-ribbed-maxi-dress//?add-to-cart=409\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-26.jpg\" alt=\"Angelic Moments Mini Dress\"><h2><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/angelic-moments-mini-dress/\">Angelic Moments Mini Dress</a></h2><del aria-hidden=\"true\">$190.00</del> <ins>$110.00</ins><a rel=\"nofollow\" aria-label=\"Add “Angelic Moments Mini Dress” to your cart\" data-product_id=\"407\" data-product_sku=\"6745643543\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/angelic-moments-mini-dress//?add-to-cart=407\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-24.jpg\" alt=\"Better With Me Mini Dress\"><h2><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/better-with-me-mini-dress/\">Better With Me Mini Dress</a></h2><del aria-hidden=\"true\">$75.00</del> <ins>$55.00</ins><a rel=\"nofollow\" aria-label=\"Add “Better With Me Mini Dress” to your cart\" data-product_id=\"404\" data-product_sku=\"32453657\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/better-with-me-mini-dress//?add-to-cart=404\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-22-2.jpg\" alt=\"Chelsea Legging Set\"><h2><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/chelsea-legging-set/\">Chelsea Legging Set</a></h2><del aria-hidden=\"true\">$310.00</del> <ins>$220.00</ins><a rel=\"nofollow\" aria-label=\"Add “Chelsea Legging Set” to your cart\" data-product_id=\"364\" data-product_sku=\"676978686\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/chelsea-legging-set//?add-to-cart=364\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-20-2.jpg\" alt=\"Extrenall Welcome To Paradise\"><h2><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/welcome-to-paradise/\">Extrenall Welcome To Paradise</a></h2><del aria-hidden=\"true\">$110.00</del> <ins>$90.00</ins><a rel=\"nofollow\" aria-label=\"Buy Product\" data-product_id=\"83\" data-product_sku=\"678901\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://royal-elementor-addons.com/\">Buy Product</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-9-2.jpg\" alt=\"Evolve Antares Activewear\"><h2><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/evolve-antares-activewear/\">Evolve Antares Activewear</a></h2><del aria-hidden=\"true\">$180.00</del> <ins>$90.00</ins><a rel=\"nofollow\" aria-label=\"Add “Evolve Antares Activewear” to your cart\" data-product_id=\"53\" data-product_sku=\"234567\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/evolve-antares-activewear//?add-to-cart=53\">Add to Cart</a></article></section> \n <h3>UP TO 70% OFF!* + <br>FREE DELIVERY!</h3>\n <p><p>Answer misery adieus add wooded how nay men before though. <br />Pretended belonging contented mrs suffering favourite you the continual.</p></p> \n <a href=\"https://royal-elementor-addons.com/\">\n Join Us Now \n </a>\n <style>/*! elementor - v3.6.8 - 27-07-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=\"329\" height=\"329\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/icon-2.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Free Shipping</h3><p>Orders Over $500</p> \n <figure><img width=\"329\" height=\"329\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/icon-4-2.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Quick Payment</h3><p>100% Secure Payment</p> \n <figure><img width=\"329\" height=\"329\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/icon-3-2.png\" alt=\"\" loading=\"lazy\" /></figure><h3>24/7 Support</h3><p>Ready For You</p> \n <figure><img width=\"329\" height=\"329\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/icon-1.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Money Return</h3><p>Back Under 7 Days</p> \n <form id=\"wpr-mailchimp-form-70d0b7c\" method=\"POST\" data-api-key=\"\" data-list-id=\"def\">\n <!-- Form Header -->\n <h3>\n GET DISCOUNT INFO </h3>\n <p>Detract yet delight written farther his general. If in so bred at dare rose lose good. Feel and make two real miss use easy. Celebrated delightful an especially increasing.</p>\n <!-- Email Input -->\n <input type=\"email\" name=\"wpr_mailchimp_email\" placeholder=\"sample@mail.com\" required=\"required\">\n <!-- Extra Fields -->\n <!-- Subscribe Button -->\n <button type=\"submit\" id=\"wpr-subscribe-70d0b7c\" data-loading=\"Subscribing...\">\n Subscribe </button>\n <!-- Success/Error Message -->\n You have been successfully Subscribed!\n Ops! Something went wrong, please try again.\n </form>','Home','','inherit','closed','closed','','18-revision-v1','','','2022-12-06 14:10:00','2022-12-06 14:10:00','',18,'https://wordpressdemo.subscriptionflow.com/?p=2091',0,'revision','',0),(2092,1,'2022-12-06 14:10:00','2022-12-06 14:10:00','<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>Sale Products</h2> \n <ul><li>All<em></em></li><li data-role=\"parent\">Dress<em></em></li><ul data-parent=\".product_cat-dress\"><li data-role=\"back\"> Back</li><li data-role=\"sub\">Maxi<em></em></li><li data-role=\"sub\">Skirt<em></em></li></ul></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":20,"gutter_vr":40,"animation":"default","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 1><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-27.jpg\" alt=\"Laney Ribbed Maxi Dress\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/laney-ribbed-maxi-dress/\">Laney Ribbed Maxi Dress</a></h2><del aria-hidden=\"true\">$110.00</del> <ins>$75.00</ins><a rel=\"nofollow\" aria-label=\"Add “Laney Ribbed Maxi Dress” to your cart\" data-product_id=\"409\" data-product_sku=\"547568769\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/laney-ribbed-maxi-dress//?add-to-cart=409\">Add to Cart</a></article></section>','Home','','inherit','closed','closed','','18-revision-v1','','','2022-12-06 14:10:00','2022-12-06 14:10:00','',18,'https://wordpressdemo.subscriptionflow.com/?p=2092',0,'revision','',0),(2093,1,'2022-12-06 14:11:14','2022-12-06 14:11:14','<style>/*! elementor - v3.6.4 - 13-04-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 Us</h2> \n <style>/*! elementor - v3.6.4 - 13-04-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}</style> \n <link rel=\"stylesheet\" href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\"> <ul>\n <li>\n 215 Woodland Ave. Manchester, NH 03102\n </li>\n <li>\n Sun - Sat : 9:00 AM - 17:00 PM\n </li>\n <li>\n (708) 856-0657\n </li>\n </ul>\n <style>/*! elementor - v3.6.4 - 13-04-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 Tiktok\n </a>\n <a target=\"_blank\" rel=\"noopener\">\n Pinterest-p\n </a>\n <h2>Get Help</h2> \n <h2>Help Center</h2> \n <h2>Track Order</h2> \n <h2>Shipping Info</h2> \n <h2>Returns</h2> \n <h2>Company</h2> \n <h2>Careers</h2> \n <h2>About</h2> \n <h2>Stores</h2> \n <h2>Want to Collab?</h2> \n <h2>Quick Links</h2> \n <h2>Size Guide</h2> \n <h2>Gift Cards</h2> \n <h2>Check Gift Card Balance</h2> \n <h2>Contact Us</h2> \n <picture>\n <source srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/Logo-2-2.png 1x, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/logo-retina-2.png 2x\"> \n <img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/Logo-2-2.png\" alt=\"\">\n <a rel=\"home\" href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/\"></a>\n </picture>\n <a rel=\"home\" href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/\"></a>\n <p>© 2022 Created with <a style=\"color: #808080;\" href=\"https://royal-elementor-addons.com/\">Royal Elementor Addons</a></p>','Woo Shop V1 Footer','','inherit','closed','closed','','340-revision-v1','','','2022-12-06 14:11:14','2022-12-06 14:11:14','',340,'https://wordpressdemo.subscriptionflow.com/?p=2093',0,'revision','',0),(2094,1,'2022-12-06 14:11:14','2022-12-06 14:11:14','<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>Get Help</h2> \n <style>/*! elementor - v3.8.1 - 13-11-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-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%)}</style> \n <h2>Help Center</h2> \n <h2>Track Order</h2> \n <h2>Shipping Info</h2> \n <h2>Returns</h2> \n <h2>Company</h2> \n <h2>Careers</h2> \n <h2>About</h2> \n <h2>Stores</h2> \n <h2>Want to Collab?</h2> \n <h2>Quick Links</h2> \n <h2>Size Guide</h2> \n <h2>Gift Cards</h2> \n <h2>Check Gift Card Balance</h2> \n <h2>Contact Us</h2>','Woo Shop V1 Footer','','inherit','closed','closed','','340-revision-v1','','','2022-12-06 14:11:14','2022-12-06 14:11:14','',340,'https://wordpressdemo.subscriptionflow.com/?p=2094',0,'revision','',0),(2095,1,'2022-12-06 14:18:39','2022-12-06 14:18:39','','SF-logo','','inherit','open','closed','','sf-logo','','','2022-12-06 14:18:39','2022-12-06 14:18:39','',337,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/SF-logo.png',0,'attachment','image/png',0),(2096,1,'2022-12-06 14:18:44','2022-12-06 14:18:44','<picture>\n <source srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/Logo-1-2.png 1x, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/Logo-Retina-1-2.png 2x\"> \n <img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/Logo-1-2.png\" alt=\"\">\n <a rel=\"home\" href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/\"></a>\n </picture>\n <a rel=\"home\" href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/\"></a>\n <nav data-trigger=\"hover\"><ul id=\"menu-1-53eac1f\"><li data-custom-width=\"960\" data-id=\"1744\"><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/\">Home</a><style>.elementor-2082 .elementor-element.elementor-element-248308b:not(.elementor-motion-effects-element-type-background), .elementor-2082 .elementor-element.elementor-element-248308b > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-2082 .elementor-element.elementor-element-248308b{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:15px 15px 15px 15px;}.elementor-2082 .elementor-element.elementor-element-248308b > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-2082 .elementor-element.elementor-element-7eebf39d{width:25%;}.elementor-2082 .elementor-element.elementor-element-1339c833 .elementor-heading-title{color:#222222;font-family:\"Poppins\", Sans-serif;font-size:15px;font-weight:600;}.elementor-2082 .elementor-element.elementor-element-32daa88c{--divider-border-style:solid;--divider-color:#FF4F40;--divider-border-width:2px;}.elementor-2082 .elementor-element.elementor-element-32daa88c .elementor-divider-separator{width:20%;margin:0 auto;margin-left:0;}.elementor-2082 .elementor-element.elementor-element-32daa88c .elementor-divider{text-align:left;padding-top:2px;padding-bottom:2px;}.elementor-2082 .elementor-element.elementor-element-32daa88c > .elementor-widget-container{margin:-8px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-filters{display:none;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .elementor-repeater-item-80bffb0{text-align:left;position:static;left:auto;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .elementor-repeater-item-226ad59{text-align:left;position:static;left:auto;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-media-hover-bg{width:100%;top:calc((100% - 100%)/2);left:calc((100% - 100%)/2);height:100%;transition-duration:0.3s;background-color:rgba(0, 0, 0, 0.25);border-radius:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-media-hover-bg[class*=\"-top\"]{top:calc((100% - 100%)/2);left:calc((100% - 100%)/2);}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-media-hover-bg[class*=\"-bottom\"]{bottom:calc((100% - 100%)/2);left:calc((100% - 100%)/2);}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-media-hover-bg[class*=\"-right\"]{top:calc((100% - 100%)/2);right:calc((100% - 100%)/2);}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-media-hover-bg[class*=\"-left\"]{top:calc((100% - 100%)/2);left:calc((100% - 100%)/2);}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-above-content{border-color:#E8E8E8;border-style:none;padding:0px 0px 0px 0px;border-radius:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-below-content{border-color:#E8E8E8;border-style:none;padding:0px 0px 0px 0px;border-radius:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item{border-radius:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-image-wrap{border-color:#E8E8E8;border-style:none;border-radius:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-title .inner-block a{color:#333333;border-color:#E8E8E8;transition-duration:0.2s;border-style:none;padding:11px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-title .inner-block a:hover{color:#54595f;border-color:#E8E8E8;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-title .wpr-pointer-item:before{transition-duration:0.2s;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-title .wpr-pointer-item:after{transition-duration:0.2s;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-title a{font-family:\"Poppins\", Sans-serif;font-size:16px;font-weight:500;line-height:1.1em;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-title .inner-block{margin:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-excerpt .inner-block{color:#6A6A6A;border-color:#E8E8E8;border-style:none;padding:0px 0px 0px 0px;margin:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-categories .inner-block a{color:#9C9C9C;border-color:#E8E8E8;transition-duration:0.1s;border-style:none;margin-right:3px;padding:0px 0px 0px 0px;border-radius:2px 2px 2px 2px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-categories .inner-block span[class*=\"wpr-grid-extra-text\"]{color:#9C9C9C;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-categories .inner-block i[class*=\"wpr-grid-extra-icon\"]{color:#9C9C9C;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-categories .inner-block a:hover{color:#605BE5;border-color:#E8E8E8;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-categories .wpr-pointer-item:before{background-color:#605BE5;transition-duration:0.1s;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-categories .wpr-pointer-item:after{background-color:#605BE5;transition-duration:0.1s;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-categories .wpr-grid-extra-text-left{padding-right:10px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-categories .wpr-grid-extra-text-right{padding-left:10px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-categories .wpr-grid-extra-icon-left{padding-right:10px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-categories .wpr-grid-extra-icon-right{padding-left:10px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-categories .inner-block{margin:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-tags .inner-block a{color:#9C9C9C;border-color:#E8E8E8;transition-duration:0.1s;border-style:none;margin-right:3px;padding:0px 0px 0px 0px;border-radius:2px 2px 2px 2px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-tags .inner-block a:hover{color:#605BE5;border-color:#E8E8E8;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-tags .wpr-pointer-item:before{background-color:#605BE5;transition-duration:0.1s;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-tags .wpr-pointer-item:after{background-color:#605BE5;transition-duration:0.1s;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-tags .wpr-grid-extra-text-left{padding-right:10px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-tags .wpr-grid-extra-text-right{padding-left:10px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-tags .wpr-grid-extra-icon-left{padding-right:10px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-tags .wpr-grid-extra-icon-right{padding-left:10px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-tags .inner-block{margin:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-woo-rating i:before{color:#ffd726;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-woo-rating i{color:#D2CDCD;font-size:22px;margin-right:0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-woo-rating span{color:#ffd726;margin-left:0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-rating .inner-block{margin:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-status .inner-block > .wpr-woo-onsale{color:#ffffff;background-color:#605BE5;border-color:#E8E8E8;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-status .inner-block > .wpr-woo-featured{color:#ffffff;background-color:#605BE5;border-color:#E8E8E8;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-status .inner-block > .wpr-woo-outofstock{color:#9C9C9C;background-color:#ffffff;border-color:#E8E8E8;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-status .inner-block > span{border-style:none;padding:3px 10px 3px 10px;margin:0px 5px 0px 0px;border-radius:2px 2px 2px 2px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-price .inner-block > span{color:#FF4F40;border-color:#E8E8E8;font-family:\"Poppins\", Sans-serif;font-size:15px;font-weight:400;border-style:none;padding:0px 0px 0px 0px;margin:0px 0px 0px 0px;border-radius:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-price .inner-block > span del{color:#9C9C9C;font-size:14px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-add-to-cart .inner-block a{color:#333333;border-color:#E8E8E8;transition-duration:0.1s;border-style:solid;border-width:2px 2px 2px 2px;padding:5px 15px 5px 15px;border-radius:2px 2px 2px 2px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-add-to-cart .inner-block a:hover{color:#605BE5;border-color:#605BE5;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-add-to-cart .inner-block a:before{transition-duration:0.1s;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-add-to-cart .inner-block a:after{transition-duration:0.1s;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-add-to-cart .wpr-grid-extra-icon-left{padding-right:5px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-add-to-cart .wpr-grid-extra-icon-right{padding-left:5px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-add-to-cart .inner-block{margin:15px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-lightbox .inner-block > span{color:#ffffff;border-color:#E8E8E8;transition-duration:0.1s;border-style:none;padding:0px 0px 0px 0px;border-radius:2px 2px 2px 2px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-lightbox .inner-block > span:hover{color:#605BE5;border-color:#E8E8E8;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-lightbox .wpr-grid-extra-text-left{padding-right:5px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-lightbox .wpr-grid-extra-text-right{padding-left:5px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-lightbox .inner-block{margin:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-sep-style-1 .inner-block > span{border-bottom-color:#E8E8E8;border-bottom-width:2px;border-bottom-style:solid;border-radius:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-sep-style-1:not(.wpr-grid-item-display-inline) .inner-block > span{width:100%;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-sep-style-1.wpr-grid-item-display-inline{width:100%;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-sep-style-1 .inner-block{margin:15px 0px 15px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-sep-style-2 .inner-block > span{border-bottom-color:#605BE5;border-bottom-width:2px;border-bottom-style:solid;border-radius:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-sep-style-2:not(.wpr-grid-item-display-inline) .inner-block > span{width:20%;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-sep-style-2.wpr-grid-item-display-inline{width:20%;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-sep-style-2 .inner-block{margin:15px 0px 15px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-protected{color:#ffffff;background-color:#605BE5;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-protected input{background-color:#ffffff;}.elementor-2082 .elementor-element.elementor-element-512af4e8{width:25.877%;}.elementor-2082 .elementor-element.elementor-element-7077b5fc .elementor-heading-title{color:#222222;font-family:\"Poppins\", Sans-serif;font-size:15px;font-weight:600;}.elementor-2082 .elementor-element.elementor-element-5648cc81{--divider-border-style:solid;--divider-color:#FF4F40;--divider-border-width:2px;}.elementor-2082 .elementor-element.elementor-element-5648cc81 .elementor-divider-separator{width:20%;margin:0 auto;margin-left:0;}.elementor-2082 .elementor-element.elementor-element-5648cc81 .elementor-divider{text-align:left;padding-top:2px;padding-bottom:2px;}.elementor-2082 .elementor-element.elementor-element-5648cc81 > .elementor-widget-container{margin:-8px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-filters{display:none;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .elementor-repeater-item-80bffb0{text-align:left;position:static;left:auto;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .elementor-repeater-item-226ad59{text-align:left;position:static;left:auto;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-media-hover-bg{width:100%;top:calc((100% - 100%)/2);left:calc((100% - 100%)/2);height:100%;transition-duration:0.3s;background-color:rgba(0, 0, 0, 0.25);border-radius:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-media-hover-bg[class*=\"-top\"]{top:calc((100% - 100%)/2);left:calc((100% - 100%)/2);}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-media-hover-bg[class*=\"-bottom\"]{bottom:calc((100% - 100%)/2);left:calc((100% - 100%)/2);}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-media-hover-bg[class*=\"-right\"]{top:calc((100% - 100%)/2);right:calc((100% - 100%)/2);}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-media-hover-bg[class*=\"-left\"]{top:calc((100% - 100%)/2);left:calc((100% - 100%)/2);}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-above-content{border-color:#E8E8E8;border-style:none;padding:0px 0px 0px 0px;border-radius:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-below-content{border-color:#E8E8E8;border-style:none;padding:0px 0px 0px 0px;border-radius:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item{border-radius:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-image-wrap{border-color:#E8E8E8;border-style:none;border-radius:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-title .inner-block a{color:#333333;border-color:#E8E8E8;transition-duration:0.2s;border-style:none;padding:11px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-title .inner-block a:hover{color:#54595f;border-color:#E8E8E8;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-title .wpr-pointer-item:before{transition-duration:0.2s;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-title .wpr-pointer-item:after{transition-duration:0.2s;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-title a{font-family:\"Poppins\", Sans-serif;font-size:16px;font-weight:500;line-height:1.1em;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-title .inner-block{margin:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-excerpt .inner-block{color:#6A6A6A;border-color:#E8E8E8;border-style:none;padding:0px 0px 0px 0px;margin:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-categories .inner-block a{color:#9C9C9C;border-color:#E8E8E8;transition-duration:0.1s;border-style:none;margin-right:3px;padding:0px 0px 0px 0px;border-radius:2px 2px 2px 2px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-categories .inner-block span[class*=\"wpr-grid-extra-text\"]{color:#9C9C9C;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-categories .inner-block i[class*=\"wpr-grid-extra-icon\"]{color:#9C9C9C;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-categories .inner-block a:hover{color:#605BE5;border-color:#E8E8E8;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-categories .wpr-pointer-item:before{background-color:#605BE5;transition-duration:0.1s;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-categories .wpr-pointer-item:after{background-color:#605BE5;transition-duration:0.1s;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-categories .wpr-grid-extra-text-left{padding-right:10px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-categories .wpr-grid-extra-text-right{padding-left:10px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-categories .wpr-grid-extra-icon-left{padding-right:10px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-categories .wpr-grid-extra-icon-right{padding-left:10px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-categories .inner-block{margin:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-tags .inner-block a{color:#9C9C9C;border-color:#E8E8E8;transition-duration:0.1s;border-style:none;margin-right:3px;padding:0px 0px 0px 0px;border-radius:2px 2px 2px 2px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-tags .inner-block a:hover{color:#605BE5;border-color:#E8E8E8;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-tags .wpr-pointer-item:before{background-color:#605BE5;transition-duration:0.1s;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-tags .wpr-pointer-item:after{background-color:#605BE5;transition-duration:0.1s;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-tags .wpr-grid-extra-text-left{padding-right:10px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-tags .wpr-grid-extra-text-right{padding-left:10px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-tags .wpr-grid-extra-icon-left{padding-right:10px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-tags .wpr-grid-extra-icon-right{padding-left:10px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-tags .inner-block{margin:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-woo-rating i:before{color:#ffd726;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-woo-rating i{color:#D2CDCD;font-size:22px;margin-right:0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-woo-rating span{color:#ffd726;margin-left:0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-rating .inner-block{margin:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-status .inner-block > .wpr-woo-onsale{color:#ffffff;background-color:#605BE5;border-color:#E8E8E8;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-status .inner-block > .wpr-woo-featured{color:#ffffff;background-color:#605BE5;border-color:#E8E8E8;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-status .inner-block > .wpr-woo-outofstock{color:#9C9C9C;background-color:#ffffff;border-color:#E8E8E8;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-status .inner-block > span{border-style:none;padding:3px 10px 3px 10px;margin:0px 5px 0px 0px;border-radius:2px 2px 2px 2px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-price .inner-block > span{color:#FF4F40;border-color:#E8E8E8;font-family:\"Poppins\", Sans-serif;font-size:15px;font-weight:400;border-style:none;padding:0px 0px 0px 0px;margin:0px 0px 0px 0px;border-radius:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-price .inner-block > span del{color:#9C9C9C;font-size:14px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-add-to-cart .inner-block a{color:#333333;border-color:#E8E8E8;transition-duration:0.1s;border-style:solid;border-width:2px 2px 2px 2px;padding:5px 15px 5px 15px;border-radius:2px 2px 2px 2px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-add-to-cart .inner-block a:hover{color:#605BE5;border-color:#605BE5;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-add-to-cart .inner-block a:before{transition-duration:0.1s;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-add-to-cart .inner-block a:after{transition-duration:0.1s;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-add-to-cart .wpr-grid-extra-icon-left{padding-right:5px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-add-to-cart .wpr-grid-extra-icon-right{padding-left:5px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-add-to-cart .inner-block{margin:15px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-lightbox .inner-block > span{color:#ffffff;border-color:#E8E8E8;transition-duration:0.1s;border-style:none;padding:0px 0px 0px 0px;border-radius:2px 2px 2px 2px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-lightbox .inner-block > span:hover{color:#605BE5;border-color:#E8E8E8;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-lightbox .wpr-grid-extra-text-left{padding-right:5px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-lightbox .wpr-grid-extra-text-right{padding-left:5px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-lightbox .inner-block{margin:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-sep-style-1 .inner-block > span{border-bottom-color:#E8E8E8;border-bottom-width:2px;border-bottom-style:solid;border-radius:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-sep-style-1:not(.wpr-grid-item-display-inline) .inner-block > span{width:100%;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-sep-style-1.wpr-grid-item-display-inline{width:100%;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-sep-style-1 .inner-block{margin:15px 0px 15px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-sep-style-2 .inner-block > span{border-bottom-color:#605BE5;border-bottom-width:2px;border-bottom-style:solid;border-radius:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-sep-style-2:not(.wpr-grid-item-display-inline) .inner-block > span{width:20%;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-sep-style-2.wpr-grid-item-display-inline{width:20%;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-sep-style-2 .inner-block{margin:15px 0px 15px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-protected{color:#ffffff;background-color:#605BE5;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-protected input{background-color:#ffffff;}.elementor-2082 .elementor-element.elementor-element-37c3f3d1{width:24.101%;}.elementor-2082 .elementor-element.elementor-element-34eece83 .elementor-heading-title{color:#222222;font-family:\"Poppins\", Sans-serif;font-size:15px;font-weight:600;}.elementor-2082 .elementor-element.elementor-element-399dfbe3{--divider-border-style:solid;--divider-color:#FF4F40;--divider-border-width:2px;}.elementor-2082 .elementor-element.elementor-element-399dfbe3 .elementor-divider-separator{width:20%;margin:0 auto;margin-left:0;}.elementor-2082 .elementor-element.elementor-element-399dfbe3 .elementor-divider{text-align:left;padding-top:2px;padding-bottom:2px;}.elementor-2082 .elementor-element.elementor-element-399dfbe3 > .elementor-widget-container{margin:-8px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-5008af1 .elementor-repeater-item-a607540 .wpr-page-list-item-badge{background-color:#34ADFF;}.elementor-2082 .elementor-element.elementor-element-5008af1 .elementor-repeater-item-603a14e .wpr-page-list-item-badge{background-color:#2FCE9E;}.elementor-2082 .elementor-element.elementor-element-5008af1 .elementor-repeater-item-7e22654 .wpr-page-list-item-badge{background-color:#FFA634;}.elementor-2082 .elementor-element.elementor-element-5008af1 .wpr-page-list-item{padding:7px 0px 7px 0px;margin:5px 8px 0px 0px;border-style:none;border-radius:0px 0px 0px 0px;border-color:#E8E8E8;transition-duration:0.6s;}.elementor-2082 .elementor-element.elementor-element-5008af1 .wpr-page-list-item a{color:#333333;font-family:\"Lato\", Sans-serif;font-size:14px;}.elementor-2082 .elementor-element.elementor-element-5008af1 .wpr-page-list-item a:hover{color:#409FFE;}.elementor-2082 .elementor-element.elementor-element-5008af1 .wpr-page-list-item div a{margin-bottom:0px;}.elementor-2082 .elementor-element.elementor-element-5008af1 .wpr-page-list-item p{color:#B6B6B6;font-size:12px;line-height:0.8em;}.elementor-2082 .elementor-element.elementor-element-5008af1 .wpr-page-list-item-badge{color:#FFFFFF;background-color:#605BE5;font-size:12px;margin-left:5px;padding:2px 7px 3px 7px;border-radius:3px 3px 3px 3px;}.elementor-2082 .elementor-element.elementor-element-5008af1 .wpr-page-list i{color:#605BE5;font-size:15px;max-height:15px;}.elementor-2082 .elementor-element.elementor-element-5008af1 .wpr-page-list i:before{max-height:15px;}.elementor-2082 .elementor-element.elementor-element-5008af1 .wpr-page-list-item-icon{max-height:15px;}.elementor-2082 .elementor-element.elementor-element-5008af1 .wpr-page-list .wpr-page-list-item-icon{margin-right:5px;}.elementor-2082 .elementor-element.elementor-element-5008af1 > .elementor-widget-container{margin:-10px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box-bg-overlay::after{-webkit-transition-duration:0.4s;transition-duration:0.4s;border-color:#FFFFFF24;border-width:1px;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box-bg-overlay::before{-webkit-transition-duration:0.4s;transition-duration:0.4s;border-color:#FFFFFF24;border-width:1px;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-border-anim-apollo::before{background-color:#FFFFFF24;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-border-anim-romeo::before{background-color:#FFFFFF24;height:1px;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-border-anim-romeo::after{background-color:#FFFFFF24;height:1px;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-border-anim-layla::before{border-top-style:solid;border-bottom-style:solid;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-border-anim-layla::after{border-left-style:solid;border-right-style:solid;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-border-anim-oscar::before{border-style:solid;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-border-anim-bubba::before{border-top-style:solid;border-bottom-style:solid;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-border-anim-bubba::after{border-left-style:solid;border-right-style:solid;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-border-anim-chicho::before{border-style:solid;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-border-anim-jazz::after{border-top-style:solid;border-bottom-style:solid;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box-bg-image{-webkit-transition-duration:0.4s;transition-duration:0.4s;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box-bg-overlay{-webkit-transition-duration:0.4s;transition-duration:0.4s;background-color:#3D423D1F;mix-blend-mode:normal;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box-icon{color:#ffffff;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box-title{color:#ffffff;font-family:\"Poppins\", Sans-serif;font-size:45px;font-weight:900;text-transform:uppercase;line-height:0.9em;margin:0 0 0px;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box-title a{color:#ffffff;-webkit-transition-duration:0.3s;transition-duration:0.3s;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box-description{color:#ffffff;font-family:\"Lato\", Sans-serif;font-size:14px;font-weight:400;margin-bottom:10px;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box-content{-webkit-transition-duration:0.3s;transition-duration:0.3s;min-height:352px;padding:30px 30px 30px 30px;-webkit-justify-content:flex-end;justify-content:flex-end;text-align:center;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box-icon i{-webkit-transition-duration:0.3s;transition-duration:0.3s;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box-title span{-webkit-transition-duration:0.3s;transition-duration:0.3s;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box-description p{-webkit-transition-duration:0.3s;transition-duration:0.3s;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box{border-radius:0px 0px 0px 0px;overflow:hidden;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box-content .wpr-promo-box-icon{font-size:27px;margin-bottom:0px;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box:hover .wpr-promo-box-bg-overlay{background-color:#3D423D69;}@media(max-width:1366px){.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-filters{display:none;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .elementor-repeater-item-80bffb0{position:static;left:auto;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .elementor-repeater-item-226ad59{position:static;left:auto;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-filters{display:none;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .elementor-repeater-item-80bffb0{position:static;left:auto;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .elementor-repeater-item-226ad59{position:static;left:auto;}}@media(max-width:1024px){.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-filters{display:none;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .elementor-repeater-item-80bffb0{position:static;left:auto;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .elementor-repeater-item-226ad59{position:static;left:auto;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-title a{font-size:18px;line-height:1.3em;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-filters{display:none;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .elementor-repeater-item-80bffb0{position:static;left:auto;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .elementor-repeater-item-226ad59{position:static;left:auto;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-title a{font-size:18px;line-height:1.3em;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box-content{min-height:422px;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box-title{font-size:55px;line-height:1em;}}@media(max-width:767px){.elementor-2082 .elementor-element.elementor-element-1339c833 .elementor-heading-title{font-size:25px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-filters{display:none;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .elementor-repeater-item-80bffb0{position:static;left:auto;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .elementor-repeater-item-226ad59{position:static;left:auto;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-title a{font-size:19px;}.elementor-2082 .elementor-element.elementor-element-7077b5fc .elementor-heading-title{font-size:25px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-filters{display:none;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .elementor-repeater-item-80bffb0{position:static;left:auto;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .elementor-repeater-item-226ad59{position:static;left:auto;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-title a{font-size:19px;}.elementor-2082 .elementor-element.elementor-element-34eece83 .elementor-heading-title{font-size:25px;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box-content{min-height:443px;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box-title{font-size:50px;}}</style> \n <section data-id=\"248308b\" data-element_type=\"section\" data-settings=\"{"background_background":"classic"}\">\n <style>/*! elementor - v3.7.0 - 08-08-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>Sale</h2> \n <style>/*! elementor - v3.7.0 - 08-08-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%);-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}</style> \n <ul><li>All<em></em></li><li>Activewear<em></em></li><li data-role=\"parent\">Dress<em></em></li><li data-role=\"parent\">Swimsuits<em></em></li><ul data-parent=\".product_cat-swimsuits\"><li data-role=\"back\"> Back</li><li data-role=\"sub\">Top Bra<em></em></li><li data-role=\"sub\">Bikini<em></em></li></ul><ul data-parent=\".product_cat-dress\"><li data-role=\"back\"> Back</li><li data-role=\"sub\">Skirt<em></em></li><li data-role=\"sub\">Maxi<em></em></li></ul></ul><section data-settings=\"{"layout":"list","columns_desktop":"1","gutter_hr":20,"gutter_vr":14,"animation":"default","animation_duration":0.29999999999999999,"animation_delay":0.10000000000000001,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.29999999999999999,"filters_animation_delay":0.10000000000000001,"pagination_type":"load-more","pagination_max_pages":1,"media_align":"left","media_width":30,"media_distance":20,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 3><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-27.jpg\" alt=\"Laney Ribbed Maxi Dress\"><h2><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/laney-ribbed-maxi-dress/\">Laney Ribbed Maxi Dress</a></h2><del aria-hidden=\"true\">$110.00</del> <ins>$75.00</ins></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-26.jpg\" alt=\"Angelic Moments Mini Dress\"><h2><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/angelic-moments-mini-dress/\">Angelic Moments Mini Dress</a></h2><del aria-hidden=\"true\">$190.00</del> <ins>$110.00</ins></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-24.jpg\" alt=\"Better With Me Mini Dress\"><h2><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/better-with-me-mini-dress/\">Better With Me Mini Dress</a></h2><del aria-hidden=\"true\">$75.00</del> <ins>$55.00</ins></article></section> \n <h2>Featured</h2> \n <ul><li>All<em></em></li><li>Activewear<em></em></li><li data-role=\"parent\">Dress<em></em></li><li data-role=\"parent\">Swimsuits<em></em></li><ul data-parent=\".product_cat-swimsuits\"><li data-role=\"back\"> Back</li><li data-role=\"sub\">Top Bra<em></em></li><li data-role=\"sub\">Bikini<em></em></li></ul><ul data-parent=\".product_cat-dress\"><li data-role=\"back\"> Back</li><li data-role=\"sub\">Skirt<em></em></li><li data-role=\"sub\">Maxi<em></em></li></ul></ul><section data-settings=\"{"layout":"list","columns_desktop":"1","gutter_hr":20,"gutter_vr":14,"animation":"default","animation_duration":0.29999999999999999,"animation_delay":0.10000000000000001,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.29999999999999999,"filters_animation_delay":0.10000000000000001,"pagination_type":"load-more","pagination_max_pages":1,"media_align":"left","media_width":30,"media_distance":20,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 3><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-12-2.jpg\" alt=\"Knot Yours Long Sleeve\"><h2><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/knot-yours-long-sleeve/\">Knot Yours Long Sleeve</a></h2>$75.00</article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-9-2.jpg\" alt=\"Evolve Antares Activewear\"><h2><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/evolve-antares-activewear/\">Evolve Antares Activewear</a></h2><del aria-hidden=\"true\">$180.00</del> <ins>$90.00</ins></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-7-2.jpg\" alt=\"Simple Easy Peasy Tank\"><h2><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/pink-paradise/\">Simple Easy Peasy Tank</a></h2>$34.99</article></section> \n <h2>Marketing</h2> \n <ul><li><a >Content Analyze </a></li><li><a >Project Management</a>Trending</li><li><a >CEO Documents</a></li><li><a >Pricing Plan</a>Hot</li><li><a >Email Marketing</a></li><li><a >Search Engine Optimization</a></li><li><a >CEO Documents</a></li><li><a >Project Management</a>New</li></ul> \n <a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/shop-wooshop-v1/\"></a> \n <h3>Endless <br>Summer</h3>\n </section>\n </li>\n<li><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/shop-wooshop-v1/\">Shop</a>\n<ul >\n <li><a target=\"_blank\" href=\"https://www.youtube.com/watch?v=f_3tNiBC3dw\" rel=\"noopener\">Shop Builder Tutorial</a> <li><a target=\"_blank\" href=\"https://demosites.royal-elementor-addons.com/fashion-v1/?ref=imported-wooshop-kit-menu\" rel=\"noopener\">Pro Demo 1</a> <li><a target=\"_blank\" href=\"https://demosites.royal-elementor-addons.com/estore-v1/?ref=imported-wooshop-kit-menu\" rel=\"noopener\">Pro Demo 2</a> <li><a target=\"_blank\" href=\"https://demosites.royal-elementor-addons.com/woo-food-v1/?ref=imported-wooshop-kit-menu\" rel=\"noopener\">Pro Demo 3</a> <li><a target=\"_blank\" href=\"https://demosites.royal-elementor-addons.com/furniture-shop-v1/?ref=imported-wooshop-kit-menu\" rel=\"noopener\">Pro Demo 4</a> <li><a target=\"_blank\" href=\"https://demosites.royal-elementor-addons.com/grocery-store-v1/?ref=imported-wooshop-kit-menu\" rel=\"noopener\">Pro Demo 5</a> <li><a target=\"_blank\" href=\"https://royal-elementor-addons.com/?ref=imported-wooshop-kit-menu#purchasepro\" rel=\"noopener\">Get this Demos</a></ul>\n</li>\n<li><a href=\"#\">Single Products</a>\n<ul >\n <li><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/pink-paradise/\">Simple Product</a> <li><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/vixen-on-vacation/\">Variable Product</a> <li><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/neon-summer-activewear/\">Grouped Product</a> <li><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/welcome-to-paradise/\">Ext/Aff Product</a></ul>\n</li>\n<li><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/about/\">About</a></li>\n<li><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/contact/\">Contact</a></li>\n</ul></nav><nav><ul id=\"mobile-menu-2-53eac1f\"><li data-id=\"1744\"><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/\">Home</a><style>.elementor-2082 .elementor-element.elementor-element-248308b:not(.elementor-motion-effects-element-type-background), .elementor-2082 .elementor-element.elementor-element-248308b > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-2082 .elementor-element.elementor-element-248308b{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:15px 15px 15px 15px;}.elementor-2082 .elementor-element.elementor-element-248308b > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-2082 .elementor-element.elementor-element-7eebf39d{width:25%;}.elementor-2082 .elementor-element.elementor-element-1339c833 .elementor-heading-title{color:#222222;font-family:\"Poppins\", Sans-serif;font-size:15px;font-weight:600;}.elementor-2082 .elementor-element.elementor-element-32daa88c{--divider-border-style:solid;--divider-color:#FF4F40;--divider-border-width:2px;}.elementor-2082 .elementor-element.elementor-element-32daa88c .elementor-divider-separator{width:20%;margin:0 auto;margin-left:0;}.elementor-2082 .elementor-element.elementor-element-32daa88c .elementor-divider{text-align:left;padding-top:2px;padding-bottom:2px;}.elementor-2082 .elementor-element.elementor-element-32daa88c > .elementor-widget-container{margin:-8px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-filters{display:none;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .elementor-repeater-item-80bffb0{text-align:left;position:static;left:auto;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .elementor-repeater-item-226ad59{text-align:left;position:static;left:auto;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-media-hover-bg{width:100%;top:calc((100% - 100%)/2);left:calc((100% - 100%)/2);height:100%;transition-duration:0.3s;background-color:rgba(0, 0, 0, 0.25);border-radius:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-media-hover-bg[class*=\"-top\"]{top:calc((100% - 100%)/2);left:calc((100% - 100%)/2);}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-media-hover-bg[class*=\"-bottom\"]{bottom:calc((100% - 100%)/2);left:calc((100% - 100%)/2);}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-media-hover-bg[class*=\"-right\"]{top:calc((100% - 100%)/2);right:calc((100% - 100%)/2);}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-media-hover-bg[class*=\"-left\"]{top:calc((100% - 100%)/2);left:calc((100% - 100%)/2);}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-above-content{border-color:#E8E8E8;border-style:none;padding:0px 0px 0px 0px;border-radius:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-below-content{border-color:#E8E8E8;border-style:none;padding:0px 0px 0px 0px;border-radius:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item{border-radius:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-image-wrap{border-color:#E8E8E8;border-style:none;border-radius:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-title .inner-block a{color:#333333;border-color:#E8E8E8;transition-duration:0.2s;border-style:none;padding:11px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-title .inner-block a:hover{color:#54595f;border-color:#E8E8E8;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-title .wpr-pointer-item:before{transition-duration:0.2s;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-title .wpr-pointer-item:after{transition-duration:0.2s;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-title a{font-family:\"Poppins\", Sans-serif;font-size:16px;font-weight:500;line-height:1.1em;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-title .inner-block{margin:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-excerpt .inner-block{color:#6A6A6A;border-color:#E8E8E8;border-style:none;padding:0px 0px 0px 0px;margin:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-categories .inner-block a{color:#9C9C9C;border-color:#E8E8E8;transition-duration:0.1s;border-style:none;margin-right:3px;padding:0px 0px 0px 0px;border-radius:2px 2px 2px 2px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-categories .inner-block span[class*=\"wpr-grid-extra-text\"]{color:#9C9C9C;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-categories .inner-block i[class*=\"wpr-grid-extra-icon\"]{color:#9C9C9C;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-categories .inner-block a:hover{color:#605BE5;border-color:#E8E8E8;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-categories .wpr-pointer-item:before{background-color:#605BE5;transition-duration:0.1s;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-categories .wpr-pointer-item:after{background-color:#605BE5;transition-duration:0.1s;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-categories .wpr-grid-extra-text-left{padding-right:10px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-categories .wpr-grid-extra-text-right{padding-left:10px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-categories .wpr-grid-extra-icon-left{padding-right:10px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-categories .wpr-grid-extra-icon-right{padding-left:10px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-categories .inner-block{margin:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-tags .inner-block a{color:#9C9C9C;border-color:#E8E8E8;transition-duration:0.1s;border-style:none;margin-right:3px;padding:0px 0px 0px 0px;border-radius:2px 2px 2px 2px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-tags .inner-block a:hover{color:#605BE5;border-color:#E8E8E8;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-tags .wpr-pointer-item:before{background-color:#605BE5;transition-duration:0.1s;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-tags .wpr-pointer-item:after{background-color:#605BE5;transition-duration:0.1s;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-tags .wpr-grid-extra-text-left{padding-right:10px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-tags .wpr-grid-extra-text-right{padding-left:10px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-tags .wpr-grid-extra-icon-left{padding-right:10px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-tags .wpr-grid-extra-icon-right{padding-left:10px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-product-tags .inner-block{margin:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-woo-rating i:before{color:#ffd726;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-woo-rating i{color:#D2CDCD;font-size:22px;margin-right:0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-woo-rating span{color:#ffd726;margin-left:0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-rating .inner-block{margin:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-status .inner-block > .wpr-woo-onsale{color:#ffffff;background-color:#605BE5;border-color:#E8E8E8;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-status .inner-block > .wpr-woo-featured{color:#ffffff;background-color:#605BE5;border-color:#E8E8E8;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-status .inner-block > .wpr-woo-outofstock{color:#9C9C9C;background-color:#ffffff;border-color:#E8E8E8;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-status .inner-block > span{border-style:none;padding:3px 10px 3px 10px;margin:0px 5px 0px 0px;border-radius:2px 2px 2px 2px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-price .inner-block > span{color:#FF4F40;border-color:#E8E8E8;font-family:\"Poppins\", Sans-serif;font-size:15px;font-weight:400;border-style:none;padding:0px 0px 0px 0px;margin:0px 0px 0px 0px;border-radius:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-price .inner-block > span del{color:#9C9C9C;font-size:14px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-add-to-cart .inner-block a{color:#333333;border-color:#E8E8E8;transition-duration:0.1s;border-style:solid;border-width:2px 2px 2px 2px;padding:5px 15px 5px 15px;border-radius:2px 2px 2px 2px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-add-to-cart .inner-block a:hover{color:#605BE5;border-color:#605BE5;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-add-to-cart .inner-block a:before{transition-duration:0.1s;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-add-to-cart .inner-block a:after{transition-duration:0.1s;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-add-to-cart .wpr-grid-extra-icon-left{padding-right:5px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-add-to-cart .wpr-grid-extra-icon-right{padding-left:5px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-add-to-cart .inner-block{margin:15px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-lightbox .inner-block > span{color:#ffffff;border-color:#E8E8E8;transition-duration:0.1s;border-style:none;padding:0px 0px 0px 0px;border-radius:2px 2px 2px 2px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-lightbox .inner-block > span:hover{color:#605BE5;border-color:#E8E8E8;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-lightbox .wpr-grid-extra-text-left{padding-right:5px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-lightbox .wpr-grid-extra-text-right{padding-left:5px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-lightbox .inner-block{margin:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-sep-style-1 .inner-block > span{border-bottom-color:#E8E8E8;border-bottom-width:2px;border-bottom-style:solid;border-radius:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-sep-style-1:not(.wpr-grid-item-display-inline) .inner-block > span{width:100%;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-sep-style-1.wpr-grid-item-display-inline{width:100%;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-sep-style-1 .inner-block{margin:15px 0px 15px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-sep-style-2 .inner-block > span{border-bottom-color:#605BE5;border-bottom-width:2px;border-bottom-style:solid;border-radius:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-sep-style-2:not(.wpr-grid-item-display-inline) .inner-block > span{width:20%;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-sep-style-2.wpr-grid-item-display-inline{width:20%;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-sep-style-2 .inner-block{margin:15px 0px 15px 0px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-protected{color:#ffffff;background-color:#605BE5;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-protected input{background-color:#ffffff;}.elementor-2082 .elementor-element.elementor-element-512af4e8{width:25.877%;}.elementor-2082 .elementor-element.elementor-element-7077b5fc .elementor-heading-title{color:#222222;font-family:\"Poppins\", Sans-serif;font-size:15px;font-weight:600;}.elementor-2082 .elementor-element.elementor-element-5648cc81{--divider-border-style:solid;--divider-color:#FF4F40;--divider-border-width:2px;}.elementor-2082 .elementor-element.elementor-element-5648cc81 .elementor-divider-separator{width:20%;margin:0 auto;margin-left:0;}.elementor-2082 .elementor-element.elementor-element-5648cc81 .elementor-divider{text-align:left;padding-top:2px;padding-bottom:2px;}.elementor-2082 .elementor-element.elementor-element-5648cc81 > .elementor-widget-container{margin:-8px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-filters{display:none;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .elementor-repeater-item-80bffb0{text-align:left;position:static;left:auto;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .elementor-repeater-item-226ad59{text-align:left;position:static;left:auto;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-media-hover-bg{width:100%;top:calc((100% - 100%)/2);left:calc((100% - 100%)/2);height:100%;transition-duration:0.3s;background-color:rgba(0, 0, 0, 0.25);border-radius:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-media-hover-bg[class*=\"-top\"]{top:calc((100% - 100%)/2);left:calc((100% - 100%)/2);}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-media-hover-bg[class*=\"-bottom\"]{bottom:calc((100% - 100%)/2);left:calc((100% - 100%)/2);}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-media-hover-bg[class*=\"-right\"]{top:calc((100% - 100%)/2);right:calc((100% - 100%)/2);}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-media-hover-bg[class*=\"-left\"]{top:calc((100% - 100%)/2);left:calc((100% - 100%)/2);}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-above-content{border-color:#E8E8E8;border-style:none;padding:0px 0px 0px 0px;border-radius:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-below-content{border-color:#E8E8E8;border-style:none;padding:0px 0px 0px 0px;border-radius:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item{border-radius:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-image-wrap{border-color:#E8E8E8;border-style:none;border-radius:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-title .inner-block a{color:#333333;border-color:#E8E8E8;transition-duration:0.2s;border-style:none;padding:11px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-title .inner-block a:hover{color:#54595f;border-color:#E8E8E8;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-title .wpr-pointer-item:before{transition-duration:0.2s;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-title .wpr-pointer-item:after{transition-duration:0.2s;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-title a{font-family:\"Poppins\", Sans-serif;font-size:16px;font-weight:500;line-height:1.1em;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-title .inner-block{margin:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-excerpt .inner-block{color:#6A6A6A;border-color:#E8E8E8;border-style:none;padding:0px 0px 0px 0px;margin:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-categories .inner-block a{color:#9C9C9C;border-color:#E8E8E8;transition-duration:0.1s;border-style:none;margin-right:3px;padding:0px 0px 0px 0px;border-radius:2px 2px 2px 2px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-categories .inner-block span[class*=\"wpr-grid-extra-text\"]{color:#9C9C9C;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-categories .inner-block i[class*=\"wpr-grid-extra-icon\"]{color:#9C9C9C;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-categories .inner-block a:hover{color:#605BE5;border-color:#E8E8E8;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-categories .wpr-pointer-item:before{background-color:#605BE5;transition-duration:0.1s;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-categories .wpr-pointer-item:after{background-color:#605BE5;transition-duration:0.1s;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-categories .wpr-grid-extra-text-left{padding-right:10px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-categories .wpr-grid-extra-text-right{padding-left:10px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-categories .wpr-grid-extra-icon-left{padding-right:10px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-categories .wpr-grid-extra-icon-right{padding-left:10px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-categories .inner-block{margin:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-tags .inner-block a{color:#9C9C9C;border-color:#E8E8E8;transition-duration:0.1s;border-style:none;margin-right:3px;padding:0px 0px 0px 0px;border-radius:2px 2px 2px 2px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-tags .inner-block a:hover{color:#605BE5;border-color:#E8E8E8;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-tags .wpr-pointer-item:before{background-color:#605BE5;transition-duration:0.1s;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-tags .wpr-pointer-item:after{background-color:#605BE5;transition-duration:0.1s;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-tags .wpr-grid-extra-text-left{padding-right:10px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-tags .wpr-grid-extra-text-right{padding-left:10px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-tags .wpr-grid-extra-icon-left{padding-right:10px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-tags .wpr-grid-extra-icon-right{padding-left:10px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-product-tags .inner-block{margin:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-woo-rating i:before{color:#ffd726;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-woo-rating i{color:#D2CDCD;font-size:22px;margin-right:0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-woo-rating span{color:#ffd726;margin-left:0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-rating .inner-block{margin:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-status .inner-block > .wpr-woo-onsale{color:#ffffff;background-color:#605BE5;border-color:#E8E8E8;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-status .inner-block > .wpr-woo-featured{color:#ffffff;background-color:#605BE5;border-color:#E8E8E8;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-status .inner-block > .wpr-woo-outofstock{color:#9C9C9C;background-color:#ffffff;border-color:#E8E8E8;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-status .inner-block > span{border-style:none;padding:3px 10px 3px 10px;margin:0px 5px 0px 0px;border-radius:2px 2px 2px 2px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-price .inner-block > span{color:#FF4F40;border-color:#E8E8E8;font-family:\"Poppins\", Sans-serif;font-size:15px;font-weight:400;border-style:none;padding:0px 0px 0px 0px;margin:0px 0px 0px 0px;border-radius:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-price .inner-block > span del{color:#9C9C9C;font-size:14px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-add-to-cart .inner-block a{color:#333333;border-color:#E8E8E8;transition-duration:0.1s;border-style:solid;border-width:2px 2px 2px 2px;padding:5px 15px 5px 15px;border-radius:2px 2px 2px 2px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-add-to-cart .inner-block a:hover{color:#605BE5;border-color:#605BE5;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-add-to-cart .inner-block a:before{transition-duration:0.1s;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-add-to-cart .inner-block a:after{transition-duration:0.1s;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-add-to-cart .wpr-grid-extra-icon-left{padding-right:5px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-add-to-cart .wpr-grid-extra-icon-right{padding-left:5px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-add-to-cart .inner-block{margin:15px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-lightbox .inner-block > span{color:#ffffff;border-color:#E8E8E8;transition-duration:0.1s;border-style:none;padding:0px 0px 0px 0px;border-radius:2px 2px 2px 2px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-lightbox .inner-block > span:hover{color:#605BE5;border-color:#E8E8E8;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-lightbox .wpr-grid-extra-text-left{padding-right:5px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-lightbox .wpr-grid-extra-text-right{padding-left:5px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-lightbox .inner-block{margin:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-sep-style-1 .inner-block > span{border-bottom-color:#E8E8E8;border-bottom-width:2px;border-bottom-style:solid;border-radius:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-sep-style-1:not(.wpr-grid-item-display-inline) .inner-block > span{width:100%;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-sep-style-1.wpr-grid-item-display-inline{width:100%;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-sep-style-1 .inner-block{margin:15px 0px 15px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-sep-style-2 .inner-block > span{border-bottom-color:#605BE5;border-bottom-width:2px;border-bottom-style:solid;border-radius:0px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-sep-style-2:not(.wpr-grid-item-display-inline) .inner-block > span{width:20%;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-sep-style-2.wpr-grid-item-display-inline{width:20%;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-sep-style-2 .inner-block{margin:15px 0px 15px 0px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-protected{color:#ffffff;background-color:#605BE5;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-protected input{background-color:#ffffff;}.elementor-2082 .elementor-element.elementor-element-37c3f3d1{width:24.101%;}.elementor-2082 .elementor-element.elementor-element-34eece83 .elementor-heading-title{color:#222222;font-family:\"Poppins\", Sans-serif;font-size:15px;font-weight:600;}.elementor-2082 .elementor-element.elementor-element-399dfbe3{--divider-border-style:solid;--divider-color:#FF4F40;--divider-border-width:2px;}.elementor-2082 .elementor-element.elementor-element-399dfbe3 .elementor-divider-separator{width:20%;margin:0 auto;margin-left:0;}.elementor-2082 .elementor-element.elementor-element-399dfbe3 .elementor-divider{text-align:left;padding-top:2px;padding-bottom:2px;}.elementor-2082 .elementor-element.elementor-element-399dfbe3 > .elementor-widget-container{margin:-8px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-5008af1 .elementor-repeater-item-a607540 .wpr-page-list-item-badge{background-color:#34ADFF;}.elementor-2082 .elementor-element.elementor-element-5008af1 .elementor-repeater-item-603a14e .wpr-page-list-item-badge{background-color:#2FCE9E;}.elementor-2082 .elementor-element.elementor-element-5008af1 .elementor-repeater-item-7e22654 .wpr-page-list-item-badge{background-color:#FFA634;}.elementor-2082 .elementor-element.elementor-element-5008af1 .wpr-page-list-item{padding:7px 0px 7px 0px;margin:5px 8px 0px 0px;border-style:none;border-radius:0px 0px 0px 0px;border-color:#E8E8E8;transition-duration:0.6s;}.elementor-2082 .elementor-element.elementor-element-5008af1 .wpr-page-list-item a{color:#333333;font-family:\"Lato\", Sans-serif;font-size:14px;}.elementor-2082 .elementor-element.elementor-element-5008af1 .wpr-page-list-item a:hover{color:#409FFE;}.elementor-2082 .elementor-element.elementor-element-5008af1 .wpr-page-list-item div a{margin-bottom:0px;}.elementor-2082 .elementor-element.elementor-element-5008af1 .wpr-page-list-item p{color:#B6B6B6;font-size:12px;line-height:0.8em;}.elementor-2082 .elementor-element.elementor-element-5008af1 .wpr-page-list-item-badge{color:#FFFFFF;background-color:#605BE5;font-size:12px;margin-left:5px;padding:2px 7px 3px 7px;border-radius:3px 3px 3px 3px;}.elementor-2082 .elementor-element.elementor-element-5008af1 .wpr-page-list i{color:#605BE5;font-size:15px;max-height:15px;}.elementor-2082 .elementor-element.elementor-element-5008af1 .wpr-page-list i:before{max-height:15px;}.elementor-2082 .elementor-element.elementor-element-5008af1 .wpr-page-list-item-icon{max-height:15px;}.elementor-2082 .elementor-element.elementor-element-5008af1 .wpr-page-list .wpr-page-list-item-icon{margin-right:5px;}.elementor-2082 .elementor-element.elementor-element-5008af1 > .elementor-widget-container{margin:-10px 0px 0px 0px;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box-bg-overlay::after{-webkit-transition-duration:0.4s;transition-duration:0.4s;border-color:#FFFFFF24;border-width:1px;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box-bg-overlay::before{-webkit-transition-duration:0.4s;transition-duration:0.4s;border-color:#FFFFFF24;border-width:1px;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-border-anim-apollo::before{background-color:#FFFFFF24;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-border-anim-romeo::before{background-color:#FFFFFF24;height:1px;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-border-anim-romeo::after{background-color:#FFFFFF24;height:1px;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-border-anim-layla::before{border-top-style:solid;border-bottom-style:solid;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-border-anim-layla::after{border-left-style:solid;border-right-style:solid;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-border-anim-oscar::before{border-style:solid;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-border-anim-bubba::before{border-top-style:solid;border-bottom-style:solid;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-border-anim-bubba::after{border-left-style:solid;border-right-style:solid;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-border-anim-chicho::before{border-style:solid;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-border-anim-jazz::after{border-top-style:solid;border-bottom-style:solid;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box-bg-image{-webkit-transition-duration:0.4s;transition-duration:0.4s;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box-bg-overlay{-webkit-transition-duration:0.4s;transition-duration:0.4s;background-color:#3D423D1F;mix-blend-mode:normal;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box-icon{color:#ffffff;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box-title{color:#ffffff;font-family:\"Poppins\", Sans-serif;font-size:45px;font-weight:900;text-transform:uppercase;line-height:0.9em;margin:0 0 0px;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box-title a{color:#ffffff;-webkit-transition-duration:0.3s;transition-duration:0.3s;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box-description{color:#ffffff;font-family:\"Lato\", Sans-serif;font-size:14px;font-weight:400;margin-bottom:10px;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box-content{-webkit-transition-duration:0.3s;transition-duration:0.3s;min-height:352px;padding:30px 30px 30px 30px;-webkit-justify-content:flex-end;justify-content:flex-end;text-align:center;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box-icon i{-webkit-transition-duration:0.3s;transition-duration:0.3s;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box-title span{-webkit-transition-duration:0.3s;transition-duration:0.3s;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box-description p{-webkit-transition-duration:0.3s;transition-duration:0.3s;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box{border-radius:0px 0px 0px 0px;overflow:hidden;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box-content .wpr-promo-box-icon{font-size:27px;margin-bottom:0px;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box:hover .wpr-promo-box-bg-overlay{background-color:#3D423D69;}@media(max-width:1366px){.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-filters{display:none;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .elementor-repeater-item-80bffb0{position:static;left:auto;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .elementor-repeater-item-226ad59{position:static;left:auto;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-filters{display:none;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .elementor-repeater-item-80bffb0{position:static;left:auto;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .elementor-repeater-item-226ad59{position:static;left:auto;}}@media(max-width:1024px){.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-filters{display:none;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .elementor-repeater-item-80bffb0{position:static;left:auto;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .elementor-repeater-item-226ad59{position:static;left:auto;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-title a{font-size:18px;line-height:1.3em;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-filters{display:none;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .elementor-repeater-item-80bffb0{position:static;left:auto;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .elementor-repeater-item-226ad59{position:static;left:auto;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-title a{font-size:18px;line-height:1.3em;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box-content{min-height:422px;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box-title{font-size:55px;line-height:1em;}}@media(max-width:767px){.elementor-2082 .elementor-element.elementor-element-1339c833 .elementor-heading-title{font-size:25px;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-filters{display:none;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .elementor-repeater-item-80bffb0{position:static;left:auto;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .elementor-repeater-item-226ad59{position:static;left:auto;}.elementor-2082 .elementor-element.elementor-element-7f88c173 .wpr-grid-item-title a{font-size:19px;}.elementor-2082 .elementor-element.elementor-element-7077b5fc .elementor-heading-title{font-size:25px;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-filters{display:none;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .elementor-repeater-item-80bffb0{position:static;left:auto;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .elementor-repeater-item-226ad59{position:static;left:auto;}.elementor-2082 .elementor-element.elementor-element-1796c9b8 .wpr-grid-item-title a{font-size:19px;}.elementor-2082 .elementor-element.elementor-element-34eece83 .elementor-heading-title{font-size:25px;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box-content{min-height:443px;}.elementor-2082 .elementor-element.elementor-element-1093ebbb .wpr-promo-box-title{font-size:50px;}}</style> \n <section data-id=\"248308b\" data-element_type=\"section\" data-settings=\"{"background_background":"classic"}\">\n <h2>Sale</h2> \n <ul><li>All<em></em></li><li>Activewear<em></em></li><li data-role=\"parent\">Dress<em></em></li><li data-role=\"parent\">Swimsuits<em></em></li><ul data-parent=\".product_cat-swimsuits\"><li data-role=\"back\"> Back</li><li data-role=\"sub\">Top Bra<em></em></li><li data-role=\"sub\">Bikini<em></em></li></ul><ul data-parent=\".product_cat-dress\"><li data-role=\"back\"> Back</li><li data-role=\"sub\">Skirt<em></em></li><li data-role=\"sub\">Maxi<em></em></li></ul></ul><section data-settings=\"{"layout":"list","columns_desktop":"1","gutter_hr":20,"gutter_vr":14,"animation":"default","animation_duration":0.29999999999999999,"animation_delay":0.10000000000000001,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.29999999999999999,"filters_animation_delay":0.10000000000000001,"pagination_type":"load-more","pagination_max_pages":1,"media_align":"left","media_width":30,"media_distance":20,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 3><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-27.jpg\" alt=\"Laney Ribbed Maxi Dress\"><h2><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/laney-ribbed-maxi-dress/\">Laney Ribbed Maxi Dress</a></h2><del aria-hidden=\"true\">$110.00</del> <ins>$75.00</ins></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-26.jpg\" alt=\"Angelic Moments Mini Dress\"><h2><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/angelic-moments-mini-dress/\">Angelic Moments Mini Dress</a></h2><del aria-hidden=\"true\">$190.00</del> <ins>$110.00</ins></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-24.jpg\" alt=\"Better With Me Mini Dress\"><h2><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/better-with-me-mini-dress/\">Better With Me Mini Dress</a></h2><del aria-hidden=\"true\">$75.00</del> <ins>$55.00</ins></article></section> \n <h2>Featured</h2> \n <ul><li>All<em></em></li><li>Activewear<em></em></li><li data-role=\"parent\">Dress<em></em></li><li data-role=\"parent\">Swimsuits<em></em></li><ul data-parent=\".product_cat-swimsuits\"><li data-role=\"back\"> Back</li><li data-role=\"sub\">Top Bra<em></em></li><li data-role=\"sub\">Bikini<em></em></li></ul><ul data-parent=\".product_cat-dress\"><li data-role=\"back\"> Back</li><li data-role=\"sub\">Skirt<em></em></li><li data-role=\"sub\">Maxi<em></em></li></ul></ul><section data-settings=\"{"layout":"list","columns_desktop":"1","gutter_hr":20,"gutter_vr":14,"animation":"default","animation_duration":0.29999999999999999,"animation_delay":0.10000000000000001,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.29999999999999999,"filters_animation_delay":0.10000000000000001,"pagination_type":"load-more","pagination_max_pages":1,"media_align":"left","media_width":30,"media_distance":20,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 3><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-12-2.jpg\" alt=\"Knot Yours Long Sleeve\"><h2><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/knot-yours-long-sleeve/\">Knot Yours Long Sleeve</a></h2>$75.00</article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-9-2.jpg\" alt=\"Evolve Antares Activewear\"><h2><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/evolve-antares-activewear/\">Evolve Antares Activewear</a></h2><del aria-hidden=\"true\">$180.00</del> <ins>$90.00</ins></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-7-2.jpg\" alt=\"Simple Easy Peasy Tank\"><h2><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/pink-paradise/\">Simple Easy Peasy Tank</a></h2>$34.99</article></section> \n <h2>Marketing</h2> \n <ul><li><a >Content Analyze </a></li><li><a >Project Management</a>Trending</li><li><a >CEO Documents</a></li><li><a >Pricing Plan</a>Hot</li><li><a >Email Marketing</a></li><li><a >Search Engine Optimization</a></li><li><a >CEO Documents</a></li><li><a >Project Management</a>New</li></ul> \n <a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/shop-wooshop-v1/\"></a> \n <h3>Endless <br>Summer</h3>\n </section>\n </li>\n<li><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/shop-wooshop-v1/\">Shop</a>\n<ul >\n <li><a target=\"_blank\" href=\"https://www.youtube.com/watch?v=f_3tNiBC3dw\" rel=\"noopener\">Shop Builder Tutorial</a> <li><a target=\"_blank\" href=\"https://demosites.royal-elementor-addons.com/fashion-v1/?ref=imported-wooshop-kit-menu\" rel=\"noopener\">Pro Demo 1</a> <li><a target=\"_blank\" href=\"https://demosites.royal-elementor-addons.com/estore-v1/?ref=imported-wooshop-kit-menu\" rel=\"noopener\">Pro Demo 2</a> <li><a target=\"_blank\" href=\"https://demosites.royal-elementor-addons.com/woo-food-v1/?ref=imported-wooshop-kit-menu\" rel=\"noopener\">Pro Demo 3</a> <li><a target=\"_blank\" href=\"https://demosites.royal-elementor-addons.com/furniture-shop-v1/?ref=imported-wooshop-kit-menu\" rel=\"noopener\">Pro Demo 4</a> <li><a target=\"_blank\" href=\"https://demosites.royal-elementor-addons.com/grocery-store-v1/?ref=imported-wooshop-kit-menu\" rel=\"noopener\">Pro Demo 5</a> <li><a target=\"_blank\" href=\"https://royal-elementor-addons.com/?ref=imported-wooshop-kit-menu#purchasepro\" rel=\"noopener\">Get this Demos</a></ul>\n</li>\n<li><a href=\"#\">Single Products</a>\n<ul >\n <li><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/pink-paradise/\">Simple Product</a> <li><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/vixen-on-vacation/\">Variable Product</a> <li><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/neon-summer-activewear/\">Grouped Product</a> <li><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/welcome-to-paradise/\">Ext/Aff Product</a></ul>\n</li>\n<li><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/about/\">About</a></li>\n<li><a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/contact/\">Contact</a></li>\n</ul></nav> \n <form role=\"search\" method=\"get\" action=\"https://demosites.royal-elementor-addons.com/wooshop-v1\">\n <input placeholder=\"Search for Dress, Top, Hat\" type=\"search\" name=\"s\" title=\"Search\" value=\"\" wpr-query-type=\"all\" number-of-results=\"2\" ajax-search=\"yes\" number-of-words=\"30\" show-ajax-thumbnails=\"yes\" show-view-result-btn=\"\" view-result-text=\"View Results\" exclude-without-thumb=\"yes\" link-target=\"_self\">\n <button type=\"submit\">\n </button>\n </form>\n <ul></ul>\n <p>More than 2 results are available in the PRO version (This notice is only visible to admin users)</p>\n <a href=https://demosites.royal-elementor-addons.com/wooshop-v1/cart-wooshop-v1/ aria-expanded=\"false\">\n <i>\n 3\n </i>\n </a>','Woo Shop V1 Header','','inherit','closed','closed','','337-revision-v1','','','2022-12-06 14:18:44','2022-12-06 14:18:44','',337,'https://wordpressdemo.subscriptionflow.com/?p=2096',0,'revision','',0),(2097,1,'2022-12-06 14:18:44','2022-12-06 14:18:44','<picture>\n <img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/SF-logo.png\" alt=\"\">\n <a rel=\"home\" href=\"https://wordpressdemo.subscriptionflow.com/\"></a>\n </picture>\n <a rel=\"home\" href=\"https://wordpressdemo.subscriptionflow.com/\"></a>\n <nav data-trigger=\"hover\"><ul id=\"menu-1-53eac1f\"><li><a href=\"https://wordpressdemo.subscriptionflow.com/\">Home</a></li>\n<li><a href=\"https://wordpressdemo.subscriptionflow.com/shop-wooshop-v1/\">Shop</a></li>\n</ul></nav><nav><ul id=\"mobile-menu-2-53eac1f\"><li><a href=\"https://wordpressdemo.subscriptionflow.com/\">Home</a></li>\n<li><a href=\"https://wordpressdemo.subscriptionflow.com/shop-wooshop-v1/\">Shop</a></li>\n</ul></nav> \n <form role=\"search\" method=\"get\" action=\"https://wordpressdemo.subscriptionflow.com\">\n <input placeholder=\"Search for Dress, Top, Hat\" type=\"search\" name=\"s\" title=\"Search\" value=\"\" wpr-query-type=\"all\" number-of-results=\"2\" ajax-search=\"yes\" number-of-words=\"30\" show-ajax-thumbnails=\"yes\" show-view-result-btn=\"\" view-result-text=\"View Results\" exclude-without-thumb=\"yes\" link-target=\"_self\">\n <button type=\"submit\">\n </button>\n </form>\n <ul></ul>\n <p>More than 2 results are available in the PRO version (This notice is only visible to admin users)</p>\n <a href=https://wordpressdemo.subscriptionflow.com/cart-wooshop-v1/ aria-expanded=\"false\">\n <i>\n 0\n </i>\n </a>','Woo Shop V1 Header','','inherit','closed','closed','','337-revision-v1','','','2022-12-06 14:18:44','2022-12-06 14:18:44','',337,'https://wordpressdemo.subscriptionflow.com/?p=2097',0,'revision','',0),(2098,1,'2022-12-06 14:20:07','2022-12-06 14:20:07','','BCT21-08-Blackc','','inherit','open','closed','','bct21-08-blackc','','','2022-12-06 14:20:07','2022-12-06 14:20:07','',409,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc.webp',0,'attachment','image/webp',0),(2099,1,'2022-12-06 14:20:28','2022-12-06 14:20:28','<strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.','Socks Monthly subscription','Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.','publish','open','closed','','socks-weekly-subscription','','','2023-02-06 09:49:26','2023-02-06 09:49:26','',0,'https://wordpressdemo.subscriptionflow.com/?post_type=product&p=2099',0,'product','',0),(2100,1,'2022-12-06 14:20:40','2022-12-06 14:20:40','<strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.','Test Product 3','Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.','publish','open','closed','','test-product-3','','','2023-11-21 14:07:56','2023-11-21 14:07:56','',0,'https://wordpressdemo.subscriptionflow.com/?post_type=product&p=2100',0,'product','',0),(2101,1,'2022-12-06 14:21:49','2022-12-06 14:21:49','<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>Sale Products</h2> \n <ul><li>All<em></em></li><li data-role=\"parent\">Dress<em></em></li><ul data-parent=\".product_cat-dress\"><li data-role=\"back\"> Back</li><li data-role=\"sub\">Maxi<em></em></li><li data-role=\"sub\">Skirt<em></em></li></ul></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":20,"gutter_vr":40,"animation":"default","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 1><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-27.jpg\" alt=\"Laney Ribbed Maxi Dress\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/laney-ribbed-maxi-dress/\">Laney Ribbed Maxi Dress</a></h2><del aria-hidden=\"true\">$110.00</del> <ins>$75.00</ins><a rel=\"nofollow\" aria-label=\"Add “Laney Ribbed Maxi Dress” to your cart\" data-product_id=\"409\" data-product_sku=\"547568769\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/laney-ribbed-maxi-dress//?add-to-cart=409\">Add to Cart</a></article></section>','Home','','inherit','closed','closed','','18-revision-v1','','','2022-12-06 14:21:49','2022-12-06 14:21:49','',18,'https://wordpressdemo.subscriptionflow.com/?p=2101',0,'revision','',0),(2102,1,'2022-12-06 14:21:49','2022-12-06 14:21:49','<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>Sale Products</h2> \n <ul><li>All<em></em></li><li data-role=\"parent\">Dress<em></em></li><ul data-parent=\".product_cat-dress\"><li data-role=\"back\"> Back</li><li data-role=\"sub\">Maxi<em></em></li><li data-role=\"sub\">Skirt<em></em></li></ul></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":20,"gutter_vr":40,"animation":"default","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 1><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-27.jpg\" alt=\"Laney Ribbed Maxi Dress\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/laney-ribbed-maxi-dress/\">Laney Ribbed Maxi Dress</a></h2><del aria-hidden=\"true\">$110.00</del> <ins>$75.00</ins><a rel=\"nofollow\" aria-label=\"Add “Laney Ribbed Maxi Dress” to your cart\" data-product_id=\"409\" data-product_sku=\"547568769\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/laney-ribbed-maxi-dress//?add-to-cart=409\">Add to Cart</a></article></section>','Home','','inherit','closed','closed','','18-revision-v1','','','2022-12-06 14:21:49','2022-12-06 14:21:49','',18,'https://wordpressdemo.subscriptionflow.com/?p=2102',0,'revision','',0),(2103,1,'2022-12-06 14:21:49','2022-12-06 14:21:49','<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>Sale Products</h2> \n <ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":20,"gutter_vr":40,"animation":"default","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 3><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Test Product 3\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-3/\">Test Product 3</a></h2><del aria-hidden=\"true\">$110.00</del> <ins>$75.00</ins><a rel=\"nofollow\" aria-label=\"Add “Test Product 3” to your cart\" data-product_id=\"2100\" data-product_sku=\"547568769-1-1\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-3//?add-to-cart=2100\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Test Product 2\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-2/\">Test Product 2</a></h2><del aria-hidden=\"true\">$110.00</del> <ins>$75.00</ins><a rel=\"nofollow\" aria-label=\"Add “Test Product 2” to your cart\" data-product_id=\"2099\" data-product_sku=\"547568769-1\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-2//?add-to-cart=2099\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Test Product 1\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/laney-ribbed-maxi-dress/\">Test Product 1</a></h2><del aria-hidden=\"true\">$110.00</del> <ins>$75.00</ins><a rel=\"nofollow\" aria-label=\"Add “Test Product 1” to your cart\" data-product_id=\"409\" data-product_sku=\"547568769\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/laney-ribbed-maxi-dress//?add-to-cart=409\">Add to Cart</a></article></section>','Home','','inherit','closed','closed','','18-revision-v1','','','2022-12-06 14:21:49','2022-12-06 14:21:49','',18,'https://wordpressdemo.subscriptionflow.com/?p=2103',0,'revision','',0),(2106,1,'2022-12-07 07:43:07','2022-12-07 07:43:07','<strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.','Monthly Subscription','Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.','inherit','closed','closed','','2099-autosave-v1','','','2022-12-07 07:43:07','2022-12-07 07:43:07','',2099,'https://wordpressdemo.subscriptionflow.com/?p=2106',0,'revision','',0),(2108,1,'2022-12-07 10:58:21','2022-12-07 10:58:21','<style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style> \n [woocommerce_my_account]','Login','','publish','closed','closed','','login','','','2022-12-07 11:36:00','2022-12-07 11:36:00','',0,'https://wordpressdemo.subscriptionflow.com/?page_id=2108',0,'page','',0),(2110,1,'2022-12-07 11:00:22','2022-12-07 11:00:22','','Login','','inherit','closed','closed','','2108-revision-v1','','','2022-12-07 11:00:22','2022-12-07 11:00:22','',2108,'https://wordpressdemo.subscriptionflow.com/?p=2110',0,'revision','',0),(2111,1,'2022-12-07 11:05:09','2022-12-07 11:05:09','','Login','','inherit','closed','closed','','2108-revision-v1','','','2022-12-07 11:05:09','2022-12-07 11:05:09','',2108,'https://wordpressdemo.subscriptionflow.com/?p=2111',0,'revision','',0),(2112,1,'2022-12-07 11:05:09','2022-12-07 11:05:09','','Login','','inherit','closed','closed','','2108-revision-v1','','','2022-12-07 11:05:09','2022-12-07 11:05:09','',2108,'https://wordpressdemo.subscriptionflow.com/?p=2112',0,'revision','',0),(2113,1,'2022-12-07 11:05:09','2022-12-07 11:05:09','[woocommerce_my_account]','Login','','inherit','closed','closed','','2108-revision-v1','','','2022-12-07 11:05:09','2022-12-07 11:05:09','',2108,'https://wordpressdemo.subscriptionflow.com/?p=2113',0,'revision','',0),(2114,1,'2022-12-07 11:07:03','2022-12-07 11:07:03','','Shop','','inherit','closed','closed','','1680-revision-v1','','','2022-12-07 11:07:03','2022-12-07 11:07:03','',1680,'https://wordpressdemo.subscriptionflow.com/?p=2114',0,'revision','',0),(2115,1,'2022-12-07 11:07:11','2022-12-07 11:07:11','<style>/*! elementor - v3.6.4 - 13-04-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>Checkout</h2> \n <p>Debating me breeding beautiful answered.</p> \n Have a coupon? <a href=\"#\">Click here to enter your code</a> \n<form method=\"post\" style=\"display:none\">\n <p>If you have a coupon code, please apply it below.</p>\n <p>\n <input type=\"text\" name=\"coupon_code\" placeholder=\"Coupon code\" id=\"coupon_code\" value=\"\" />\n </p>\n <p>\n <button type=\"submit\" name=\"apply_coupon\" value=\"Apply coupon\">Apply coupon</button>\n </p>\n</form>\n<form name=\"checkout\" method=\"post\" action=\"https://demosites.royal-elementor-addons.com/wooshop-v1/checkout-wooshop-v1/\" enctype=\"multipart/form-data\">\n <h3>Billing details</h3>\n <p id=\"billing_first_name_field\" data-priority=\"10\"><label for=\"billing_first_name\">First name <abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_first_name\" id=\"billing_first_name\" placeholder=\"\" value=\"\" autocomplete=\"given-name\" /></p><p id=\"billing_last_name_field\" data-priority=\"20\"><label for=\"billing_last_name\">Last name <abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_last_name\" id=\"billing_last_name\" placeholder=\"\" value=\"\" autocomplete=\"family-name\" /></p><p id=\"billing_company_field\" data-priority=\"30\"><label for=\"billing_company\">Company name (optional)</label><input type=\"text\" name=\"billing_company\" id=\"billing_company\" placeholder=\"\" value=\"\" autocomplete=\"organization\" /></p><p id=\"billing_country_field\" data-priority=\"40\"><label for=\"billing_country\">Country / Region <abbr title=\"required\">*</abbr></label><select name=\"billing_country\" id=\"billing_country\" autocomplete=\"country\" data-placeholder=\"Select a country / region…\" data-label=\"Country / Region\"><option value=\"\">Select a country / region…</option><option value=\"AF\" >Afghanistan</option><option value=\"AX\" >Åland Islands</option><option value=\"AL\" >Albania</option><option value=\"DZ\" >Algeria</option><option value=\"AS\" >American Samoa</option><option value=\"AD\" >Andorra</option><option value=\"AO\" >Angola</option><option value=\"AI\" >Anguilla</option><option value=\"AQ\" >Antarctica</option><option value=\"AG\" >Antigua and Barbuda</option><option value=\"AR\" >Argentina</option><option value=\"AM\" >Armenia</option><option value=\"AW\" >Aruba</option><option value=\"AU\" >Australia</option><option value=\"AT\" >Austria</option><option value=\"AZ\" >Azerbaijan</option><option value=\"BS\" >Bahamas</option><option value=\"BH\" >Bahrain</option><option value=\"BD\" >Bangladesh</option><option value=\"BB\" >Barbados</option><option value=\"BY\" >Belarus</option><option value=\"PW\" >Belau</option><option value=\"BE\" >Belgium</option><option value=\"BZ\" >Belize</option><option value=\"BJ\" >Benin</option><option value=\"BM\" >Bermuda</option><option value=\"BT\" >Bhutan</option><option value=\"BO\" >Bolivia</option><option value=\"BQ\" >Bonaire, Saint Eustatius and Saba</option><option value=\"BA\" >Bosnia and Herzegovina</option><option value=\"BW\" >Botswana</option><option value=\"BV\" >Bouvet Island</option><option value=\"BR\" >Brazil</option><option value=\"IO\" >British Indian Ocean Territory</option><option value=\"BN\" >Brunei</option><option value=\"BG\" >Bulgaria</option><option value=\"BF\" >Burkina Faso</option><option value=\"BI\" >Burundi</option><option value=\"KH\" >Cambodia</option><option value=\"CM\" >Cameroon</option><option value=\"CA\" >Canada</option><option value=\"CV\" >Cape Verde</option><option value=\"KY\" >Cayman Islands</option><option value=\"CF\" >Central African Republic</option><option value=\"TD\" >Chad</option><option value=\"CL\" >Chile</option><option value=\"CN\" >China</option><option value=\"CX\" >Christmas Island</option><option value=\"CC\" >Cocos (Keeling) Islands</option><option value=\"CO\" >Colombia</option><option value=\"KM\" >Comoros</option><option value=\"CG\" >Congo (Brazzaville)</option><option value=\"CD\" >Congo (Kinshasa)</option><option value=\"CK\" >Cook Islands</option><option value=\"CR\" >Costa Rica</option><option value=\"HR\" >Croatia</option><option value=\"CU\" >Cuba</option><option value=\"CW\" >Curaçao</option><option value=\"CY\" >Cyprus</option><option value=\"CZ\" >Czech Republic</option><option value=\"DK\" >Denmark</option><option value=\"DJ\" >Djibouti</option><option value=\"DM\" >Dominica</option><option value=\"DO\" >Dominican Republic</option><option value=\"EC\" >Ecuador</option><option value=\"EG\" >Egypt</option><option value=\"SV\" >El Salvador</option><option value=\"GQ\" >Equatorial Guinea</option><option value=\"ER\" >Eritrea</option><option value=\"EE\" >Estonia</option><option value=\"SZ\" >Eswatini</option><option value=\"ET\" >Ethiopia</option><option value=\"FK\" >Falkland Islands</option><option value=\"FO\" >Faroe Islands</option><option value=\"FJ\" >Fiji</option><option value=\"FI\" >Finland</option><option value=\"FR\" >France</option><option value=\"GF\" >French Guiana</option><option value=\"PF\" >French Polynesia</option><option value=\"TF\" >French Southern Territories</option><option value=\"GA\" >Gabon</option><option value=\"GM\" >Gambia</option><option value=\"GE\" >Georgia</option><option value=\"DE\" >Germany</option><option value=\"GH\" >Ghana</option><option value=\"GI\" >Gibraltar</option><option value=\"GR\" >Greece</option><option value=\"GL\" >Greenland</option><option value=\"GD\" >Grenada</option><option value=\"GP\" >Guadeloupe</option><option value=\"GU\" >Guam</option><option value=\"GT\" >Guatemala</option><option value=\"GG\" >Guernsey</option><option value=\"GN\" >Guinea</option><option value=\"GW\" >Guinea-Bissau</option><option value=\"GY\" >Guyana</option><option value=\"HT\" >Haiti</option><option value=\"HM\" >Heard Island and McDonald Islands</option><option value=\"HN\" >Honduras</option><option value=\"HK\" >Hong Kong</option><option value=\"HU\" >Hungary</option><option value=\"IS\" >Iceland</option><option value=\"IN\" >India</option><option value=\"ID\" >Indonesia</option><option value=\"IR\" >Iran</option><option value=\"IQ\" >Iraq</option><option value=\"IE\" >Ireland</option><option value=\"IM\" >Isle of Man</option><option value=\"IL\" >Israel</option><option value=\"IT\" >Italy</option><option value=\"CI\" >Ivory Coast</option><option value=\"JM\" >Jamaica</option><option value=\"JP\" >Japan</option><option value=\"JE\" >Jersey</option><option value=\"JO\" >Jordan</option><option value=\"KZ\" >Kazakhstan</option><option value=\"KE\" >Kenya</option><option value=\"KI\" >Kiribati</option><option value=\"KW\" >Kuwait</option><option value=\"KG\" >Kyrgyzstan</option><option value=\"LA\" >Laos</option><option value=\"LV\" >Latvia</option><option value=\"LB\" >Lebanon</option><option value=\"LS\" >Lesotho</option><option value=\"LR\" >Liberia</option><option value=\"LY\" >Libya</option><option value=\"LI\" >Liechtenstein</option><option value=\"LT\" >Lithuania</option><option value=\"LU\" >Luxembourg</option><option value=\"MO\" >Macao</option><option value=\"MG\" >Madagascar</option><option value=\"MW\" >Malawi</option><option value=\"MY\" >Malaysia</option><option value=\"MV\" >Maldives</option><option value=\"ML\" >Mali</option><option value=\"MT\" >Malta</option><option value=\"MH\" >Marshall Islands</option><option value=\"MQ\" >Martinique</option><option value=\"MR\" >Mauritania</option><option value=\"MU\" >Mauritius</option><option value=\"YT\" >Mayotte</option><option value=\"MX\" >Mexico</option><option value=\"FM\" >Micronesia</option><option value=\"MD\" >Moldova</option><option value=\"MC\" >Monaco</option><option value=\"MN\" >Mongolia</option><option value=\"ME\" >Montenegro</option><option value=\"MS\" >Montserrat</option><option value=\"MA\" >Morocco</option><option value=\"MZ\" >Mozambique</option><option value=\"MM\" >Myanmar</option><option value=\"NA\" >Namibia</option><option value=\"NR\" >Nauru</option><option value=\"NP\" >Nepal</option><option value=\"NL\" >Netherlands</option><option value=\"NC\" >New Caledonia</option><option value=\"NZ\" >New Zealand</option><option value=\"NI\" >Nicaragua</option><option value=\"NE\" >Niger</option><option value=\"NG\" >Nigeria</option><option value=\"NU\" >Niue</option><option value=\"NF\" >Norfolk Island</option><option value=\"KP\" >North Korea</option><option value=\"MK\" >North Macedonia</option><option value=\"MP\" >Northern Mariana Islands</option><option value=\"NO\" >Norway</option><option value=\"OM\" >Oman</option><option value=\"PK\" >Pakistan</option><option value=\"PS\" >Palestinian Territory</option><option value=\"PA\" >Panama</option><option value=\"PG\" >Papua New Guinea</option><option value=\"PY\" >Paraguay</option><option value=\"PE\" >Peru</option><option value=\"PH\" >Philippines</option><option value=\"PN\" >Pitcairn</option><option value=\"PL\" >Poland</option><option value=\"PT\" >Portugal</option><option value=\"PR\" >Puerto Rico</option><option value=\"QA\" >Qatar</option><option value=\"RE\" >Reunion</option><option value=\"RO\" >Romania</option><option value=\"RU\" >Russia</option><option value=\"RW\" >Rwanda</option><option value=\"ST\" >São Tomé and Príncipe</option><option value=\"BL\" >Saint Barthélemy</option><option value=\"SH\" >Saint Helena</option><option value=\"KN\" >Saint Kitts and Nevis</option><option value=\"LC\" >Saint Lucia</option><option value=\"SX\" >Saint Martin (Dutch part)</option><option value=\"MF\" >Saint Martin (French part)</option><option value=\"PM\" >Saint Pierre and Miquelon</option><option value=\"VC\" >Saint Vincent and the Grenadines</option><option value=\"WS\" >Samoa</option><option value=\"SM\" >San Marino</option><option value=\"SA\" >Saudi Arabia</option><option value=\"SN\" >Senegal</option><option value=\"RS\" >Serbia</option><option value=\"SC\" >Seychelles</option><option value=\"SL\" >Sierra Leone</option><option value=\"SG\" >Singapore</option><option value=\"SK\" >Slovakia</option><option value=\"SI\" >Slovenia</option><option value=\"SB\" >Solomon Islands</option><option value=\"SO\" >Somalia</option><option value=\"ZA\" >South Africa</option><option value=\"GS\" >South Georgia/Sandwich Islands</option><option value=\"KR\" >South Korea</option><option value=\"SS\" >South Sudan</option><option value=\"ES\" >Spain</option><option value=\"LK\" >Sri Lanka</option><option value=\"SD\" >Sudan</option><option value=\"SR\" >Suriname</option><option value=\"SJ\" >Svalbard and Jan Mayen</option><option value=\"SE\" >Sweden</option><option value=\"CH\" >Switzerland</option><option value=\"SY\" >Syria</option><option value=\"TW\" >Taiwan</option><option value=\"TJ\" >Tajikistan</option><option value=\"TZ\" >Tanzania</option><option value=\"TH\" >Thailand</option><option value=\"TL\" >Timor-Leste</option><option value=\"TG\" >Togo</option><option value=\"TK\" >Tokelau</option><option value=\"TO\" >Tonga</option><option value=\"TT\" >Trinidad and Tobago</option><option value=\"TN\" >Tunisia</option><option value=\"TR\" >Turkey</option><option value=\"TM\" >Turkmenistan</option><option value=\"TC\" >Turks and Caicos Islands</option><option value=\"TV\" >Tuvalu</option><option value=\"UG\" >Uganda</option><option value=\"UA\" >Ukraine</option><option value=\"AE\" >United Arab Emirates</option><option value=\"GB\" >United Kingdom (UK)</option><option value=\"US\" selected=\'selected\'>United States (US)</option><option value=\"UM\" >United States (US) Minor Outlying Islands</option><option value=\"UY\" >Uruguay</option><option value=\"UZ\" >Uzbekistan</option><option value=\"VU\" >Vanuatu</option><option value=\"VA\" >Vatican</option><option value=\"VE\" >Venezuela</option><option value=\"VN\" >Vietnam</option><option value=\"VG\" >Virgin Islands (British)</option><option value=\"VI\" >Virgin Islands (US)</option><option value=\"WF\" >Wallis and Futuna</option><option value=\"EH\" >Western Sahara</option><option value=\"YE\" >Yemen</option><option value=\"ZM\" >Zambia</option><option value=\"ZW\" >Zimbabwe</option></select><noscript><button type=\"submit\" name=\"woocommerce_checkout_update_totals\" value=\"Update country / region\">Update country / region</button></noscript></p><p id=\"billing_address_1_field\" data-priority=\"50\"><label for=\"billing_address_1\">Street address <abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_address_1\" id=\"billing_address_1\" placeholder=\"House number and street name\" value=\"\" autocomplete=\"address-line1\" /></p><p id=\"billing_address_2_field\" data-priority=\"60\"><label for=\"billing_address_2\">Apartment, suite, unit, etc. (optional)</label><input type=\"text\" name=\"billing_address_2\" id=\"billing_address_2\" placeholder=\"Apartment, suite, unit, etc. (optional)\" value=\"\" autocomplete=\"address-line2\" /></p><p id=\"billing_city_field\" data-priority=\"70\"><label for=\"billing_city\">Town / City <abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_city\" id=\"billing_city\" placeholder=\"\" value=\"\" autocomplete=\"address-level2\" /></p><p id=\"billing_state_field\" data-priority=\"80\"><label for=\"billing_state\">State <abbr title=\"required\">*</abbr></label><select name=\"billing_state\" id=\"billing_state\" autocomplete=\"address-level1\" data-placeholder=\"Select an option…\" data-input-classes=\"\" data-label=\"State\">\n <option value=\"\">Select an option…</option><option value=\"AL\" >Alabama</option><option value=\"AK\" >Alaska</option><option value=\"AZ\" >Arizona</option><option value=\"AR\" >Arkansas</option><option value=\"CA\" selected=\'selected\'>California</option><option value=\"CO\" >Colorado</option><option value=\"CT\" >Connecticut</option><option value=\"DE\" >Delaware</option><option value=\"DC\" >District Of Columbia</option><option value=\"FL\" >Florida</option><option value=\"GA\" >Georgia</option><option value=\"HI\" >Hawaii</option><option value=\"ID\" >Idaho</option><option value=\"IL\" >Illinois</option><option value=\"IN\" >Indiana</option><option value=\"IA\" >Iowa</option><option value=\"KS\" >Kansas</option><option value=\"KY\" >Kentucky</option><option value=\"LA\" >Louisiana</option><option value=\"ME\" >Maine</option><option value=\"MD\" >Maryland</option><option value=\"MA\" >Massachusetts</option><option value=\"MI\" >Michigan</option><option value=\"MN\" >Minnesota</option><option value=\"MS\" >Mississippi</option><option value=\"MO\" >Missouri</option><option value=\"MT\" >Montana</option><option value=\"NE\" >Nebraska</option><option value=\"NV\" >Nevada</option><option value=\"NH\" >New Hampshire</option><option value=\"NJ\" >New Jersey</option><option value=\"NM\" >New Mexico</option><option value=\"NY\" >New York</option><option value=\"NC\" >North Carolina</option><option value=\"ND\" >North Dakota</option><option value=\"OH\" >Ohio</option><option value=\"OK\" >Oklahoma</option><option value=\"OR\" >Oregon</option><option value=\"PA\" >Pennsylvania</option><option value=\"RI\" >Rhode Island</option><option value=\"SC\" >South Carolina</option><option value=\"SD\" >South Dakota</option><option value=\"TN\" >Tennessee</option><option value=\"TX\" >Texas</option><option value=\"UT\" >Utah</option><option value=\"VT\" >Vermont</option><option value=\"VA\" >Virginia</option><option value=\"WA\" >Washington</option><option value=\"WV\" >West Virginia</option><option value=\"WI\" >Wisconsin</option><option value=\"WY\" >Wyoming</option><option value=\"AA\" >Armed Forces (AA)</option><option value=\"AE\" >Armed Forces (AE)</option><option value=\"AP\" >Armed Forces (AP)</option></select></p><p id=\"billing_postcode_field\" data-priority=\"90\"><label for=\"billing_postcode\">ZIP Code <abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_postcode\" id=\"billing_postcode\" placeholder=\"\" value=\"\" autocomplete=\"postal-code\" /></p><p id=\"billing_phone_field\" data-priority=\"100\"><label for=\"billing_phone\">Phone <abbr title=\"required\">*</abbr></label><input type=\"tel\" name=\"billing_phone\" id=\"billing_phone\" placeholder=\"\" value=\"\" autocomplete=\"tel\" /></p><p id=\"billing_email_field\" data-priority=\"110\"><label for=\"billing_email\">Email address <abbr title=\"required\">*</abbr></label><input type=\"email\" name=\"billing_email\" id=\"billing_email\" placeholder=\"\" value=\"royalelementoraddons@gmail.com\" autocomplete=\"email username\" /></p> \n <h3>Additional information</h3>\n <p id=\"order_comments_field\" data-priority=\"\"><label for=\"order_comments\">Order notes (optional)</label><textarea name=\"order_comments\" id=\"order_comments\" placeholder=\"Notes about your order, e.g. special notes for delivery.\" rows=\"2\" cols=\"5\"></textarea></p> \n <h3 id=\"order_review_heading\">Your order</h3>\n <table>\n <thead>\n <tr>\n <th>Product</th>\n <th>Subtotal</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <td>\n Simple Easy Peasy Tank <strong>× 1</strong> </td>\n <td>\n <bdi>$34.99</bdi> </td>\n </tr>\n <tr>\n <td>\n Evolve Antares Activewear <strong>× 2</strong> </td>\n <td>\n <bdi>$180.00</bdi> </td>\n </tr>\n </tbody>\n <tfoot>\n <tr>\n <th>Subtotal</th>\n <td><bdi>$214.99</bdi></td>\n </tr>\n <tr>\n <th>Total</th>\n <td><strong><bdi>$214.99</bdi></strong> </td>\n </tr>\n </tfoot>\n</table>\n <ul>\n <li>\n <input id=\"payment_method_bacs\" type=\"radio\" name=\"payment_method\" value=\"bacs\" checked=\'checked\' data-order_button_text=\"\" />\n <label for=\"payment_method_bacs\">\n Direct bank transfer </label>\n <p>Make your payment directly into our bank account. Please use your Order ID as the payment reference. Your order will not be shipped until the funds have cleared in our account.</p>\n </li>\n<li>\n <input id=\"payment_method_cheque\" type=\"radio\" name=\"payment_method\" value=\"cheque\" data-order_button_text=\"\" />\n <label for=\"payment_method_cheque\">\n Check payments </label>\n <p>Please send a check to Store Name, Store Street, Store Town, Store State / County, Store Postcode.</p>\n </li>\n<li>\n <input id=\"payment_method_cod\" type=\"radio\" name=\"payment_method\" value=\"cod\" data-order_button_text=\"\" />\n <label for=\"payment_method_cod\">\n Cash on delivery </label>\n <p>Pay with cash upon delivery.</p>\n </li>\n </ul>\n <noscript>\n Since your browser does not support JavaScript, or it is disabled, please ensure you click the <em>Update Totals</em> button before placing your order. You may be charged more than the amount stated above if you fail to do so. <br/><button type=\"submit\" name=\"woocommerce_checkout_update_totals\" value=\"Update totals\">Update totals</button>\n </noscript>\n <button type=\"submit\" name=\"woocommerce_checkout_place_order\" id=\"place_order\" value=\"Place order\" data-value=\"Place order\">Place order</button>\n <input type=\"hidden\" id=\"woocommerce-process-checkout-nonce\" name=\"woocommerce-process-checkout-nonce\" value=\"d49fbf0683\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wooshop-v1/wp-admin/admin-ajax.php\" /> \n</form>','Checkout','','inherit','closed','closed','','1679-revision-v1','','','2022-12-07 11:07:11','2022-12-07 11:07:11','',1679,'https://wordpressdemo.subscriptionflow.com/?p=2115',0,'revision','',0),(2116,1,'2022-12-07 11:07:15','2022-12-07 11:07:15','<style>/*! elementor - v3.6.4 - 13-04-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>Cart</h2> \n <p>Debating me breeding be answered.</p> \n<form action=\"https://demosites.royal-elementor-addons.com/wooshop-v1/cart-wooshop-v1/\" method=\"post\">\n <table cellspacing=\"0\">\n <thead>\n <tr>\n <th> </th>\n <th>Product</th>\n <th> </th>\n <th>Price</th>\n <th>Quantity</th>\n <th>Subtotal</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <td>\n <a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/cart-wooshop-v1/?remove_item=f7177163c833dff4b38fc8d2872f1ec6&_wpnonce=28d67b86a8\" aria-label=\"Remove this item\" data-product_id=\"44\" data-product_sku=\"123456\">×</a> </td>\n <td>\n <a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/pink-paradise/\"><img width=\"300\" height=\"300\" src=\"https://demosites.royal-elementor-addons.com/wooshop-v1/wp-content/uploads/sites/49/2022/06/pic-7-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demosites.royal-elementor-addons.com/wooshop-v1/wp-content/uploads/sites/49/2022/06/pic-7-300x300.jpg 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-7-250x150.jpg 150w, https://demosites.royal-elementor-addons.com/wooshop-v1/wp-content/uploads/sites/49/2022/06/pic-7-768x768.jpg 768w, https://demosites.royal-elementor-addons.com/wooshop-v1/wp-content/uploads/sites/49/2022/06/pic-7-450x450.jpg 450w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-7-2.jpg 600w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-7-200x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a> </td>\n <td data-title=\"Product\">\n <a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/pink-paradise/\">Simple Easy Peasy Tank</a> </td>\n <td data-title=\"Price\">\n <bdi>$34.99</bdi> </td>\n <td data-title=\"Quantity\">\n <label for=\"quantity_62dfbbb5afebd\">Simple Easy Peasy Tank quantity</label>\n <input\n type=\"number\"\n id=\"quantity_62dfbbb5afebd\"\n class=\"input-text qty text\"\n step=\"1\"\n min=\"0\"\n max=\"\"\n name=\"cart[f7177163c833dff4b38fc8d2872f1ec6][qty]\"\n value=\"2\"\n title=\"Qty\"\n size=\"4\"\n placeholder=\"\"\n inputmode=\"numeric\"\n autocomplete=\"off\"\n />\n </td>\n <td data-title=\"Subtotal\">\n <bdi>$69.98</bdi> </td>\n </tr>\n <tr>\n <td>\n <a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/cart-wooshop-v1/?remove_item=d82c8d1619ad8176d665453cfb2e55f0&_wpnonce=28d67b86a8\" aria-label=\"Remove this item\" data-product_id=\"53\" data-product_sku=\"234567\">×</a> </td>\n <td>\n <a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/evolve-antares-activewear/\"><img width=\"300\" height=\"300\" src=\"https://demosites.royal-elementor-addons.com/wooshop-v1/wp-content/uploads/sites/49/2022/06/pic-9-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demosites.royal-elementor-addons.com/wooshop-v1/wp-content/uploads/sites/49/2022/06/pic-9-300x300.jpg 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-9-250x150.jpg 150w, https://demosites.royal-elementor-addons.com/wooshop-v1/wp-content/uploads/sites/49/2022/06/pic-9-768x768.jpg 768w, https://demosites.royal-elementor-addons.com/wooshop-v1/wp-content/uploads/sites/49/2022/06/pic-9-450x450.jpg 450w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-9-2.jpg 600w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-9-200x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a> </td>\n <td data-title=\"Product\">\n <a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/evolve-antares-activewear/\">Evolve Antares Activewear</a> </td>\n <td data-title=\"Price\">\n <bdi>$90.00</bdi> </td>\n <td data-title=\"Quantity\">\n <label for=\"quantity_62dfbbb5b05b6\">Evolve Antares Activewear quantity</label>\n <input\n type=\"number\"\n id=\"quantity_62dfbbb5b05b6\"\n class=\"input-text qty text\"\n step=\"1\"\n min=\"0\"\n max=\"\"\n name=\"cart[d82c8d1619ad8176d665453cfb2e55f0][qty]\"\n value=\"5\"\n title=\"Qty\"\n size=\"4\"\n placeholder=\"\"\n inputmode=\"numeric\"\n autocomplete=\"off\"\n />\n </td>\n <td data-title=\"Subtotal\">\n <bdi>$450.00</bdi> </td>\n </tr>\n <tr>\n <td>\n <a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/cart-wooshop-v1/?remove_item=e2c420d928d4bf8ce0ff2ec19b371514&_wpnonce=28d67b86a8\" aria-label=\"Remove this item\" data-product_id=\"71\" data-product_sku=\"345678\">×</a> </td>\n <td>\n <a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/knot-yours-long-sleeve/\"><img width=\"300\" height=\"300\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-12-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-12-300x300.jpg 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-12-250x150.jpg 150w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-12-768x768.jpg 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-12-450x450.jpg 450w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-12-2.jpg 600w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-12-200x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a> </td>\n <td data-title=\"Product\">\n <a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/knot-yours-long-sleeve/\">Knot Yours Long Sleeve</a> </td>\n <td data-title=\"Price\">\n <bdi>$75.00</bdi> </td>\n <td data-title=\"Quantity\">\n <label for=\"quantity_62dfbbb5b09fe\">Knot Yours Long Sleeve quantity</label>\n <input\n type=\"number\"\n id=\"quantity_62dfbbb5b09fe\"\n class=\"input-text qty text\"\n step=\"1\"\n min=\"0\"\n max=\"\"\n name=\"cart[e2c420d928d4bf8ce0ff2ec19b371514][qty]\"\n value=\"1\"\n title=\"Qty\"\n size=\"4\"\n placeholder=\"\"\n inputmode=\"numeric\"\n autocomplete=\"off\"\n />\n </td>\n <td data-title=\"Subtotal\">\n <bdi>$75.00</bdi> </td>\n </tr>\n <tr>\n <td>\n <a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/cart-wooshop-v1/?remove_item=f4f6dce2f3a0f9dada0c2b5b66452017&_wpnonce=28d67b86a8\" aria-label=\"Remove this item\" data-product_id=\"407\" data-product_sku=\"6745643543\">×</a> </td>\n <td>\n <a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/angelic-moments-mini-dress/\"><img width=\"300\" height=\"300\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-26-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-26-300x300.jpg 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-26-150x150.jpg 150w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-26-768x768.jpg 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-26-450x450.jpg 450w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-26-600x600.jpg 600w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-26-100x100.jpg 100w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/pic-26.jpg 800w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a> </td>\n <td data-title=\"Product\">\n <a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/product/angelic-moments-mini-dress/\">Angelic Moments Mini Dress</a> </td>\n <td data-title=\"Price\">\n <bdi>$110.00</bdi> </td>\n <td data-title=\"Quantity\">\n <label for=\"quantity_62dfbbb5b0dd8\">Angelic Moments Mini Dress quantity</label>\n <input\n type=\"number\"\n id=\"quantity_62dfbbb5b0dd8\"\n class=\"input-text qty text\"\n step=\"1\"\n min=\"0\"\n max=\"\"\n name=\"cart[f4f6dce2f3a0f9dada0c2b5b66452017][qty]\"\n value=\"1\"\n title=\"Qty\"\n size=\"4\"\n placeholder=\"\"\n inputmode=\"numeric\"\n autocomplete=\"off\"\n />\n </td>\n <td data-title=\"Subtotal\">\n <bdi>$110.00</bdi> </td>\n </tr>\n <tr>\n <td colspan=\"6\">\n <button type=\"submit\" name=\"update_cart\" value=\"Update Cart\">Update Cart</button>\n <input type=\"hidden\" id=\"woocommerce-cart-nonce\" name=\"woocommerce-cart-nonce\" value=\"28d67b86a8\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wooshop-v1/wp-admin/admin-ajax.php\" /> </td>\n </tr>\n </tbody>\n </table>\n <input type=\"text\" name=\"coupon_code\" id=\"coupon_code\" value=\"\" placeholder=\"Coupon code\" />\n <button name=\"apply_coupon\" type=\"submit\" value=\"Apply coupon\">Apply coupon</button>\n </form>\n <h2>Cart Totals</h2>\n <table cellspacing=\"0\">\n <tr>\n <th>Subtotal</th>\n <td data-title=\"Subtotal\"><bdi>$704.98</bdi></td>\n </tr>\n <tr>\n <th>Total</th>\n <td data-title=\"Total\"><strong><bdi>$704.98</bdi></strong> </td>\n </tr>\n </table>\n<a href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/checkout-wooshop-v1/\">\n Proceed to Checkout</a>','Cart','','inherit','closed','closed','','1678-revision-v1','','','2022-12-07 11:07:15','2022-12-07 11:07:15','',1678,'https://wordpressdemo.subscriptionflow.com/?p=2116',0,'revision','',0),(2120,1,'2022-12-07 11:35:39','2022-12-07 11:35:39','[woocommerce_my_account]','Login','','inherit','closed','closed','','2108-revision-v1','','','2022-12-07 11:35:39','2022-12-07 11:35:39','',2108,'https://wordpressdemo.subscriptionflow.com/?p=2120',0,'revision','',0),(2121,1,'2022-12-07 11:35:39','2022-12-07 11:35:39','[woocommerce_my_account]','Login','','inherit','closed','closed','','2108-revision-v1','','','2022-12-07 11:35:39','2022-12-07 11:35:39','',2108,'https://wordpressdemo.subscriptionflow.com/?p=2121',0,'revision','',0),(2122,1,'2022-12-07 11:35:40','2022-12-07 11:35:40','[woocommerce_my_account] \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Login','','inherit','closed','closed','','2108-revision-v1','','','2022-12-07 11:35:40','2022-12-07 11:35:40','',2108,'https://wordpressdemo.subscriptionflow.com/?p=2122',0,'revision','',0),(2123,1,'2022-12-07 11:36:00','2022-12-07 11:36:00','[woocommerce_my_account] \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Login','','inherit','closed','closed','','2108-revision-v1','','','2022-12-07 11:36:00','2022-12-07 11:36:00','',2108,'https://wordpressdemo.subscriptionflow.com/?p=2123',0,'revision','',0),(2124,1,'2022-12-07 11:36:00','2022-12-07 11:36:00','[woocommerce_my_account] \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Login','','inherit','closed','closed','','2108-revision-v1','','','2022-12-07 11:36:00','2022-12-07 11:36:00','',2108,'https://wordpressdemo.subscriptionflow.com/?p=2124',0,'revision','',0),(2125,1,'2022-12-07 11:36:00','2022-12-07 11:36:00','<style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style> \n [woocommerce_my_account]','Login','','inherit','closed','closed','','2108-revision-v1','','','2022-12-07 11:36:00','2022-12-07 11:36:00','',2108,'https://wordpressdemo.subscriptionflow.com/?p=2125',0,'revision','',0),(2131,1,'2023-01-05 12:07:58','2023-01-05 12:07:58','<style>/*! elementor - v3.10.1 - 17-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><h2>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" role=\"button\" rel=\"noopener\">\n Buy Now\n </a>\n <p>30 Days Money Back Guarantee</p> \n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n Save 44% \n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" role=\"button\" rel=\"noopener\">\n Buy Now\n </a>\n <p>30 Days Money Back Guarantee</p> \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a role=\"button\">\n Buy Now\n </a>\n <p>30 Days Money Back Guarantee</p>','Plans','','publish','closed','closed','','plans','','','2023-02-06 10:37:42','2023-02-06 10:37:42','',0,'https://wordpressdemo.subscriptionflow.com/?page_id=2131',0,'page','',0),(2132,1,'2023-01-05 12:07:58','2023-01-05 12:07:58','','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-01-05 12:07:58','2023-01-05 12:07:58','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2132',0,'revision','',0),(2133,1,'2023-01-05 12:12:37','2023-01-05 12:12:37','','placeholder.png','','inherit','open','closed','','placeholder-png','','','2023-01-05 12:12:37','2023-01-05 12:12:37','',0,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/placeholder.png',0,'attachment','image/png',0),(2134,1,'2023-01-05 12:12:38','2023-01-05 12:12:38','','placeholder.png','','inherit','open','closed','','placeholder-png-2','','','2023-01-05 12:12:38','2023-01-05 12:12:38','',0,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/placeholder-1.png',0,'attachment','image/png',0),(2135,1,'2023-01-05 12:12:38','2023-01-05 12:12:38','','placeholder.png','','inherit','open','closed','','placeholder-png-3','','','2023-01-05 12:12:38','2023-01-05 12:12:38','',0,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/placeholder-2.png',0,'attachment','image/png',0),(2136,1,'2023-01-05 12:12:39','2023-01-05 12:12:39','','placeholder.png','','inherit','open','closed','','placeholder-png-4','','','2023-01-05 12:12:39','2023-01-05 12:12:39','',0,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/placeholder-3.png',0,'attachment','image/png',0),(2137,1,'2023-01-05 12:12:39','2023-01-05 12:12:39','','placeholder.png','','inherit','open','closed','','placeholder-png-5','','','2023-01-05 12:12:39','2023-01-05 12:12:39','',0,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/placeholder-4.png',0,'attachment','image/png',0),(2138,1,'2023-01-05 12:12:40','2023-01-05 12:12:40','','placeholder.png','','inherit','open','closed','','placeholder-png-6','','','2023-01-05 12:12:40','2023-01-05 12:12:40','',0,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/placeholder-5.png',0,'attachment','image/png',0),(2139,1,'2023-01-05 12:12:50','2023-01-05 12:12:50','','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-01-05 12:12:50','2023-01-05 12:12:50','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2139',0,'revision','',0),(2140,1,'2023-01-05 12:12:50','2023-01-05 12:12:50','','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-01-05 12:12:50','2023-01-05 12:12:50','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2140',0,'revision','',0),(2141,1,'2023-01-05 12:12:50','2023-01-05 12:12:50','<style>/*! elementor - v3.9.0 - 06-12-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>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a >\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a >\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a >\n Buy Now\n </a>\n 30 Days Money Back Guarantee','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-01-05 12:12:50','2023-01-05 12:12:50','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2141',0,'revision','',0),(2143,1,'2023-01-05 12:18:52','2023-01-05 12:18:52','<style>/*! elementor - v3.9.0 - 06-12-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>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a >\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a >\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a >\n Buy Now\n </a>\n 30 Days Money Back Guarantee','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-01-05 12:18:52','2023-01-05 12:18:52','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2143',0,'revision','',0),(2144,1,'2023-01-05 12:18:53','2023-01-05 12:18:53','<style>/*! elementor - v3.9.0 - 06-12-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>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a >\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a >\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a >\n Buy Now\n </a>\n 30 Days Money Back Guarantee','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-01-05 12:18:53','2023-01-05 12:18:53','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2144',0,'revision','',0),(2145,1,'2023-01-05 12:18:53','2023-01-05 12:18:53','<style>/*! elementor - v3.9.0 - 06-12-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>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a >\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a >\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a >\n Buy Now\n </a>\n 30 Days Money Back Guarantee','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-01-05 12:18:53','2023-01-05 12:18:53','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2145',0,'revision','',0),(2146,1,'2023-01-05 12:19:06','2023-01-05 12:19:06','<style>/*! elementor - v3.9.0 - 06-12-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>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a >\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a >\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a >\n Buy Now\n </a>\n 30 Days Money Back Guarantee','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-01-05 12:19:06','2023-01-05 12:19:06','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2146',0,'revision','',0),(2147,1,'2023-01-05 12:19:06','2023-01-05 12:19:06','<style>/*! elementor - v3.9.0 - 06-12-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>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a >\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a >\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a >\n Buy Now\n </a>\n 30 Days Money Back Guarantee','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-01-05 12:19:06','2023-01-05 12:19:06','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2147',0,'revision','',0),(2148,1,'2023-01-05 12:19:06','2023-01-05 12:19:06','<style>/*! elementor - v3.9.0 - 06-12-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>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a >\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a >\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a >\n Buy Now\n </a>\n 30 Days Money Back Guarantee','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-01-05 12:19:06','2023-01-05 12:19:06','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2148',0,'revision','',0),(2149,1,'2023-01-05 12:20:49','2023-01-05 12:20:49','','Test Shop','','publish','closed','closed','','test-shop','','','2023-01-05 12:20:49','2023-01-05 12:20:49','',0,'https://wordpressdemo.subscriptionflow.com/?page_id=2149',0,'page','',0),(2150,1,'2023-01-05 12:20:49','2023-01-05 12:20:49','','Test Shop','','inherit','closed','closed','','2149-revision-v1','','','2023-01-05 12:20:49','2023-01-05 12:20:49','',2149,'https://wordpressdemo.subscriptionflow.com/?p=2150',0,'revision','',0),(2151,1,'2023-01-05 12:43:12','2023-01-05 12:43:12','<style>/*! elementor - v3.9.0 - 06-12-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>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a >\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a >\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a >\n Buy Now\n </a>\n 30 Days Money Back Guarantee','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-01-05 12:43:12','2023-01-05 12:43:12','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2151',0,'revision','',0),(2152,1,'2023-01-05 12:43:12','2023-01-05 12:43:12','<style>/*! elementor - v3.9.0 - 06-12-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>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a >\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a >\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a >\n Buy Now\n </a>\n 30 Days Money Back Guarantee','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-01-05 12:43:12','2023-01-05 12:43:12','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2152',0,'revision','',0),(2153,1,'2023-01-05 12:43:12','2023-01-05 12:43:12','<style>/*! elementor - v3.9.0 - 06-12-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>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a >\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a >\n Buy Now\n </a>\n 30 Days Money Back Guarantee','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-01-05 12:43:12','2023-01-05 12:43:12','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2153',0,'revision','',0),(2154,1,'2023-01-05 12:44:04','2023-01-05 12:44:04','<style>/*! elementor - v3.9.0 - 06-12-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>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a >\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a >\n Buy Now\n </a>\n 30 Days Money Back Guarantee','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-01-05 12:44:04','2023-01-05 12:44:04','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2154',0,'revision','',0),(2155,1,'2023-01-05 12:44:04','2023-01-05 12:44:04','<style>/*! elementor - v3.9.0 - 06-12-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>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a >\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a >\n Buy Now\n </a>\n 30 Days Money Back Guarantee','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-01-05 12:44:04','2023-01-05 12:44:04','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2155',0,'revision','',0),(2156,1,'2023-01-05 12:44:04','2023-01-05 12:44:04','<style>/*! elementor - v3.9.0 - 06-12-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>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/2939517a-580e-4203-bc7b-433f62fe55c3/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a >\n Buy Now\n </a>\n 30 Days Money Back Guarantee','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-01-05 12:44:04','2023-01-05 12:44:04','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2156',0,'revision','',0),(2157,1,'2023-01-05 12:44:23','2023-01-05 12:44:23','<style>/*! elementor - v3.9.0 - 06-12-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>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/2939517a-580e-4203-bc7b-433f62fe55c3/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a >\n Buy Now\n </a>\n 30 Days Money Back Guarantee','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-01-05 12:44:23','2023-01-05 12:44:23','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2157',0,'revision','',0),(2158,1,'2023-01-05 12:44:23','2023-01-05 12:44:23','<style>/*! elementor - v3.9.0 - 06-12-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>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/2939517a-580e-4203-bc7b-433f62fe55c3/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a >\n Buy Now\n </a>\n 30 Days Money Back Guarantee','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-01-05 12:44:23','2023-01-05 12:44:23','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2158',0,'revision','',0),(2159,1,'2023-01-05 12:44:23','2023-01-05 12:44:23','<style>/*! elementor - v3.9.0 - 06-12-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>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/2939517a-580e-4203-bc7b-433f62fe55c3/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/47669555-7ea2-4125-bda7-0a6e6c0919d8/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-01-05 12:44:23','2023-01-05 12:44:23','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2159',0,'revision','',0),(2161,1,'2023-01-05 12:51:51','2023-01-05 12:51:51','','Test Shop','','inherit','closed','closed','','2149-autosave-v1','','','2023-01-05 13:12:23','2023-01-05 13:12:23','',2149,'https://wordpressdemo.subscriptionflow.com/?p=2161',0,'revision','',0),(2162,1,'2023-01-06 12:54:38','2023-01-06 12:54:38','<style>/*! elementor - v3.9.0 - 06-12-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=\"960\" height=\"423\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101.png 979w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101-300x132.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101-768x338.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101-600x264.png 600w\" sizes=\"(max-width: 960px) 100vw, 960px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Price: [custom_query_paramter paramter_type=\'price\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','publish','closed','closed','','thank-you','','','2023-01-10 13:40:34','2023-01-10 13:40:34','',0,'https://wordpressdemo.subscriptionflow.com/?page_id=2162',0,'page','',0),(2163,1,'2023-01-06 12:54:38','2023-01-06 12:54:38','','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-06 12:54:38','2023-01-06 12:54:38','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2163',0,'revision','',0),(2164,1,'2023-01-06 15:20:35','2023-01-06 15:20:35','','93.png','','inherit','open','closed','','93-png','','','2023-01-06 15:20:35','2023-01-06 15:20:35','',0,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png',0,'attachment','image/png',0),(2165,1,'2023-01-06 15:20:35','2023-01-06 15:20:35','','placeholder.png','','inherit','open','closed','','placeholder-png-7','','','2023-01-06 15:20:35','2023-01-06 15:20:35','',0,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/placeholder-6.png',0,'attachment','image/png',0),(2166,1,'2023-01-06 15:20:36','2023-01-06 15:20:36','','placeholder.png','','inherit','open','closed','','placeholder-png-8','','','2023-01-06 15:20:36','2023-01-06 15:20:36','',0,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/placeholder-7.png',0,'attachment','image/png',0),(2167,1,'2023-01-06 15:20:36','2023-01-06 15:20:36','','placeholder.png','','inherit','open','closed','','placeholder-png-9','','','2023-01-06 15:20:36','2023-01-06 15:20:36','',0,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/placeholder-8.png',0,'attachment','image/png',0),(2168,1,'2023-01-06 15:20:37','2023-01-06 15:20:37','','placeholder.png','','inherit','open','closed','','placeholder-png-10','','','2023-01-06 15:20:37','2023-01-06 15:20:37','',0,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/placeholder-9.png',0,'attachment','image/png',0),(2169,1,'2023-01-06 15:20:37','2023-01-06 15:20:37','','placeholder.png','','inherit','open','closed','','placeholder-png-11','','','2023-01-06 15:20:37','2023-01-06 15:20:37','',0,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/placeholder-10.png',0,'attachment','image/png',0),(2170,1,'2023-01-06 15:20:37','2023-01-06 15:20:37','','placeholder.png','','inherit','open','closed','','placeholder-png-12','','','2023-01-06 15:20:37','2023-01-06 15:20:37','',0,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/placeholder-11.png',0,'attachment','image/png',0),(2171,1,'2023-01-06 15:20:38','2023-01-06 15:20:38','','placeholder.png','','inherit','open','closed','','placeholder-png-13','','','2023-01-06 15:20:38','2023-01-06 15:20:38','',0,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/placeholder-12.png',0,'attachment','image/png',0),(2172,1,'2023-01-06 15:20:38','2023-01-06 15:20:38','','placeholder.png','','inherit','open','closed','','placeholder-png-14','','','2023-01-06 15:20:38','2023-01-06 15:20:38','',0,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/placeholder-13.png',0,'attachment','image/png',0),(2173,1,'2023-01-06 15:20:39','2023-01-06 15:20:39','','placeholder.png','','inherit','open','closed','','placeholder-png-15','','','2023-01-06 15:20:39','2023-01-06 15:20:39','',0,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/placeholder-14.png',0,'attachment','image/png',0),(2174,1,'2023-01-06 15:20:39','2023-01-06 15:20:39','','placeholder.png','','inherit','open','closed','','placeholder-png-16','','','2023-01-06 15:20:39','2023-01-06 15:20:39','',0,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/placeholder-15.png',0,'attachment','image/png',0),(2175,1,'2023-01-06 15:20:40','2023-01-06 15:20:40','','placeholder.png','','inherit','open','closed','','placeholder-png-17','','','2023-01-06 15:20:40','2023-01-06 15:20:40','',0,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/placeholder-16.png',0,'attachment','image/png',0),(2176,1,'2023-01-06 15:20:40','2023-01-06 15:20:40','','placeholder.png','','inherit','open','closed','','placeholder-png-18','','','2023-01-06 15:20:40','2023-01-06 15:20:40','',0,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/placeholder-17.png',0,'attachment','image/png',0),(2177,1,'2023-01-06 15:20:41','2023-01-06 15:20:41','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>We are glad that you have considered our <strong>subscription management and payment processing platform</strong> to manage your subscription business operations.</p><p>Thank you for requesting more information. We will get back to you shortly with details.<br /><br /></p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p>','thank you','','publish','closed','closed','','thank-you','','','2023-01-06 15:20:41','2023-01-06 15:20:41','',0,'https://wordpressdemo.subscriptionflow.com/?elementor_library=thank-you',0,'elementor_library','',0),(2178,1,'2023-01-06 15:20:41','2023-01-06 15:20:41','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>We are glad that you have considered our <strong>subscription management and payment processing platform</strong> to manage your subscription business operations.</p><p>Thank you for requesting more information. We will get back to you shortly with details.<br /><br /></p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p>','thank you','','inherit','closed','closed','','2177-revision-v1','','','2023-01-06 15:20:41','2023-01-06 15:20:41','',2177,'https://wordpressdemo.subscriptionflow.com/?p=2178',0,'revision','',0),(2180,1,'2023-01-06 15:23:46','2023-01-06 15:23:46','','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-06 15:23:46','2023-01-06 15:23:46','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2180',0,'revision','',0),(2181,1,'2023-01-06 15:23:46','2023-01-06 15:23:46','','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-06 15:23:46','2023-01-06 15:23:46','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2181',0,'revision','',0),(2182,1,'2023-01-06 15:23:46','2023-01-06 15:23:46','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>We are glad that you have considered our <strong>subscription management and payment processing platform</strong> to manage your subscription business operations.</p><p>Thank you for requesting more information. We will get back to you shortly with details.<br /><br /></p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-06 15:23:46','2023-01-06 15:23:46','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2182',0,'revision','',0),(2183,1,'2023-01-06 15:25:11','2023-01-06 15:25:11','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>We are glad that you have considered our <strong>subscription management and payment processing platform</strong> to manage your subscription business operations.</p><p>Thank you for requesting more information. We will get back to you shortly with details.<br /><br /></p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-06 15:25:11','2023-01-06 15:25:11','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2183',0,'revision','',0),(2184,1,'2023-01-06 15:25:11','2023-01-06 15:25:11','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>We are glad that you have considered our <strong>subscription management and payment processing platform</strong> to manage your subscription business operations.</p><p>Thank you for requesting more information. We will get back to you shortly with details.<br /><br /></p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-06 15:25:11','2023-01-06 15:25:11','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2184',0,'revision','',0),(2185,1,'2023-01-06 15:25:11','2023-01-06 15:25:11','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>We are glad that you have considered our <strong>subscription management and payment processing platform</strong> to manage your subscription business operations.</p><p>Thank you for requesting more information. We will get back to you shortly with details.<br /><br /></p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-06 15:25:11','2023-01-06 15:25:11','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2185',0,'revision','',0),(2186,1,'2023-01-06 15:26:23','2023-01-06 15:26:23','<style>/*! elementor - v3.9.0 - 06-12-2022 */<br />\r\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>\r\n\r\n<img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" sizes=\"(max-width: 863px) 100vw, 863px\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" alt=\"\" width=\"863\" height=\"353\" />\r\n\r\n<strong>Your Request Has Been Received.</strong>\r\n\r\n<style>/*! elementor - v3.9.0 - 06-12-2022 */<br />\r\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>\r\n<h2>We Appreciate Your Interest in Our Product</h2>\r\nWe are glad that you have considered our <strong>subscription management and payment processing platform</strong> to manage your subscription business operations.\r\n\r\nThank you for requesting more information. We will get back to you shortly with details.\r\n\r\n<strong><em>Stay Connected with SubscriptionFlow!</em></strong>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-06 15:26:23','2023-01-06 15:26:23','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2186',0,'revision','',0),(2187,1,'2023-01-06 15:27:12','2023-01-06 15:27:12','<style>/*! elementor - v3.9.0 - 06-12-2022 */<br />\r\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>\r\n\r\n<img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" sizes=\"(max-width: 863px) 100vw, 863px\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" alt=\"\" width=\"863\" height=\"353\" />\r\n\r\n<strong>Your Request Has Been Received.</strong>\r\n\r\n<style>/*! elementor - v3.9.0 - 06-12-2022 */<br />\r\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>\r\n<h2>We Appreciate Your Interest in Our Product</h2>\r\nWe are glad that you have considered our <strong>subscription management and payment processing platform</strong> to manage your subscription business operations.\r\n\r\nThank you for requesting more information. We will get back to you shortly with details.\r\n\r\n<strong><em>Stay Connected with SubscriptionFlow!</em></strong>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-06 15:27:12','2023-01-06 15:27:12','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2187',0,'revision','',0),(2188,1,'2023-01-06 15:27:12','2023-01-06 15:27:12','<style>/*! elementor - v3.9.0 - 06-12-2022 */<br />\r\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>\r\n\r\n<img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" sizes=\"(max-width: 863px) 100vw, 863px\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" alt=\"\" width=\"863\" height=\"353\" />\r\n\r\n<strong>Your Request Has Been Received.</strong>\r\n\r\n<style>/*! elementor - v3.9.0 - 06-12-2022 */<br />\r\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>\r\n<h2>We Appreciate Your Interest in Our Product</h2>\r\nWe are glad that you have considered our <strong>subscription management and payment processing platform</strong> to manage your subscription business operations.\r\n\r\nThank you for requesting more information. We will get back to you shortly with details.\r\n\r\n<strong><em>Stay Connected with SubscriptionFlow!</em></strong>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-06 15:27:12','2023-01-06 15:27:12','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2188',0,'revision','',0),(2189,1,'2023-01-06 15:27:12','2023-01-06 15:27:12','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>We are glad that you have considered our <strong>subscription management and payment processing platform</strong> to manage your subscription business operations.</p><p>Thank you for requesting more information. We will get back to you shortly with details.<br /><br /></p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-06 15:27:12','2023-01-06 15:27:12','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2189',0,'revision','',0),(2190,1,'2023-01-06 15:36:01','2023-01-06 15:36:01','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>We are glad that you have considered our <strong>subscription management and payment processing platform</strong> to manage your subscription business operations.</p><p>Thank you for requesting more information. We will get back to you shortly with details.<br /><br /></p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-06 15:36:01','2023-01-06 15:36:01','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2190',0,'revision','',0),(2191,1,'2023-01-06 15:36:01','2023-01-06 15:36:01','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>We are glad that you have considered our <strong>subscription management and payment processing platform</strong> to manage your subscription business operations.</p><p>Thank you for requesting more information. We will get back to you shortly with details.<br /><br /></p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-06 15:36:01','2023-01-06 15:36:01','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2191',0,'revision','',0),(2192,1,'2023-01-06 15:36:01','2023-01-06 15:36:01','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [Customer_id] [Customer_name]</p><p>Email: [Customer_email]</p><p>Product Name: [Product_name] Plan Name: [Plan_name]<br />Plan Price: [Price]</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-06 15:36:01','2023-01-06 15:36:01','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2192',0,'revision','',0),(2194,1,'2023-01-06 15:54:30','2023-01-06 15:54:30','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [Customer_id] [Customer_name]</p><p>Email: [Customer_email]</p><p>Product Name: [Product_name] Plan Name: [Plan_name]<br />Plan Price: [Price]</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-06 15:54:30','2023-01-06 15:54:30','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2194',0,'revision','',0),(2195,1,'2023-01-06 15:54:30','2023-01-06 15:54:30','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [Customer_id] [Customer_name]</p><p>Email: [Customer_email]</p><p>Product Name: [Product_name] Plan Name: [Plan_name]<br />Plan Price: [Price]</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-06 15:54:30','2023-01-06 15:54:30','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2195',0,'revision','',0),(2196,1,'2023-01-06 15:54:30','2023-01-06 15:54:30','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n [customer_name]<p>Name: [Customer_id] [Customer_name]</p><p>Email: [Customer_email]</p><p>Product Name: [Product_name] Plan Name: [Plan_name]<br />Plan Price: [Price]</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-06 15:54:30','2023-01-06 15:54:30','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2196',0,'revision','',0),(2197,1,'2023-01-06 15:55:08','2023-01-06 15:55:08','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n [customer_name]<p>Name: [Customer_id] [Customer_name]</p><p>Email: [Customer_email]</p><p>Product Name: [Product_name] Plan Name: [Plan_name]<br />Plan Price: [Price]</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-06 15:55:08','2023-01-06 15:55:08','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2197',0,'revision','',0),(2198,1,'2023-01-06 15:55:08','2023-01-06 15:55:08','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n [customer_name]<p>Name: [Customer_id] [Customer_name]</p><p>Email: [Customer_email]</p><p>Product Name: [Product_name] Plan Name: [Plan_name]<br />Plan Price: [Price]</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-06 15:55:08','2023-01-06 15:55:08','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2198',0,'revision','',0),(2199,1,'2023-01-06 15:55:08','2023-01-06 15:55:08','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n customer_name<p>Name: [Customer_id] [Customer_name]</p><p>Email: [Customer_email]</p><p>Product Name: [Product_name] Plan Name: [Plan_name]<br />Plan Price: [Price]</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-06 15:55:08','2023-01-06 15:55:08','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2199',0,'revision','',0),(2200,1,'2023-01-06 15:57:00','2023-01-06 15:57:00','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n customer_name<p>Name: [Customer_id] [Customer_name]</p><p>Email: [Customer_email]</p><p>Product Name: [Product_name] Plan Name: [Plan_name]<br />Plan Price: [Price]</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-06 15:57:00','2023-01-06 15:57:00','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2200',0,'revision','',0),(2201,1,'2023-01-06 15:57:00','2023-01-06 15:57:00','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n customer_name<p>Name: [Customer_id] [Customer_name]</p><p>Email: [Customer_email]</p><p>Product Name: [Product_name] Plan Name: [Plan_name]<br />Plan Price: [Price]</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-06 15:57:00','2023-01-06 15:57:00','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2201',0,'revision','',0),(2202,1,'2023-01-06 15:57:01','2023-01-06 15:57:01','[customer_nam \n <style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n customer_name \n <p>Name: [Customer_id] [Customer_name]</p><p>Email: [Customer_email]</p><p>Product Name: [Product_name] Plan Name: [Plan_name]<br />Plan Price: [Price]</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-06 15:57:01','2023-01-06 15:57:01','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2202',0,'revision','',0),(2203,1,'2023-01-06 15:59:26','2023-01-06 15:59:26','[customer_nam \n <style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n customer_name \n <p>Name: [Customer_id] [Customer_name]</p><p>Email: [Customer_email]</p><p>Product Name: [Product_name] Plan Name: [Plan_name]<br />Plan Price: [Price]</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-06 15:59:26','2023-01-06 15:59:26','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2203',0,'revision','',0),(2204,1,'2023-01-06 15:59:26','2023-01-06 15:59:26','[customer_nam \n <style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n customer_name \n <p>Name: [Customer_id] [Customer_name]</p><p>Email: [Customer_email]</p><p>Product Name: [Product_name] Plan Name: [Plan_name]<br />Plan Price: [Price]</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-06 15:59:26','2023-01-06 15:59:26','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2204',0,'revision','',0),(2205,1,'2023-01-06 15:59:26','2023-01-06 15:59:26','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n Name: [customer_name] \n <p>Name: [Customer_id] [Customer_name]</p><p>Email: [Customer_email]</p><p>Product Name: [Product_name] Plan Name: [Plan_name]<br />Plan Price: [Price]</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-06 15:59:26','2023-01-06 15:59:26','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2205',0,'revision','',0),(2206,1,'2023-01-09 14:41:07','2023-01-09 14:41:07','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n Name: [customer_name] \n <p>Name: [Customer_id] [Customer_name]</p><p>Email: [Customer_email]</p><p>Product Name: [Product_name] Plan Name: [Plan_name]<br />Plan Price: [Price]</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-09 14:41:07','2023-01-09 14:41:07','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2206',0,'revision','',0),(2207,1,'2023-01-09 14:41:07','2023-01-09 14:41:07','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n Name: [customer_name] \n <p>Name: [Customer_id] [Customer_name]</p><p>Email: [Customer_email]</p><p>Product Name: [Product_name] Plan Name: [Plan_name]<br />Plan Price: [Price]</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-09 14:41:07','2023-01-09 14:41:07','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2207',0,'revision','',0),(2208,1,'2023-01-09 14:41:07','2023-01-09 14:41:07','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n [custom_query_paramter paramter_type=\"name\"]<p>Name: [Customer_id] [Customer_name]</p><p>Email: [Customer_email]</p><p>Product Name: [Product_name] Plan Name: [Plan_name]<br />Plan Price: [Price]</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-09 14:41:07','2023-01-09 14:41:07','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2208',0,'revision','',0),(2209,1,'2023-01-09 14:41:48','2023-01-09 14:41:48','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n [custom_query_paramter paramter_type=\"name\"]<p>Name: [Customer_id] [Customer_name]</p><p>Email: [Customer_email]</p><p>Product Name: [Product_name] Plan Name: [Plan_name]<br />Plan Price: [Price]</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-09 14:41:48','2023-01-09 14:41:48','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2209',0,'revision','',0),(2210,1,'2023-01-09 14:41:48','2023-01-09 14:41:48','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n [custom_query_paramter paramter_type=\"name\"]<p>Name: [Customer_id] [Customer_name]</p><p>Email: [Customer_email]</p><p>Product Name: [Product_name] Plan Name: [Plan_name]<br />Plan Price: [Price]</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-09 14:41:48','2023-01-09 14:41:48','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2210',0,'revision','',0),(2211,1,'2023-01-09 14:41:48','2023-01-09 14:41:48','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n [custom_query_paramter paramter_type=\"name\"]<p>[custom_query_paramter paramter_type=\"name\"]</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-09 14:41:48','2023-01-09 14:41:48','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2211',0,'revision','',0),(2212,1,'2023-01-09 14:46:13','2023-01-09 14:46:13','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n [custom_query_paramter paramter_type=\"name\"]<p>[custom_query_paramter paramter_type=\"name\"]</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-09 14:46:13','2023-01-09 14:46:13','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2212',0,'revision','',0),(2213,1,'2023-01-09 14:46:13','2023-01-09 14:46:13','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n [custom_query_paramter paramter_type=\"name\"]<p>[custom_query_paramter paramter_type=\"name\"]</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-09 14:46:13','2023-01-09 14:46:13','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2213',0,'revision','',0),(2214,1,'2023-01-09 14:46:13','2023-01-09 14:46:13','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-09 14:46:13','2023-01-09 14:46:13','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2214',0,'revision','',0),(2215,1,'2023-01-09 14:47:58','2023-01-09 14:47:58','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-09 14:47:58','2023-01-09 14:47:58','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2215',0,'revision','',0),(2216,1,'2023-01-09 14:47:58','2023-01-09 14:47:58','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-09 14:47:58','2023-01-09 14:47:58','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2216',0,'revision','',0),(2217,1,'2023-01-09 14:47:58','2023-01-09 14:47:58','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n [custom_query_paramter paramter_type=\'name\']<p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-09 14:47:58','2023-01-09 14:47:58','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2217',0,'revision','',0),(2218,1,'2023-01-09 14:48:24','2023-01-09 14:48:24','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n [custom_query_paramter paramter_type=\'name\']<p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-09 14:48:24','2023-01-09 14:48:24','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2218',0,'revision','',0),(2219,1,'2023-01-09 14:48:24','2023-01-09 14:48:24','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n [custom_query_paramter paramter_type=\'name\']<p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-09 14:48:24','2023-01-09 14:48:24','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2219',0,'revision','',0),(2220,1,'2023-01-09 14:48:24','2023-01-09 14:48:24','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n Name: [custom_query_paramter paramter_type=\'name\']<p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-09 14:48:24','2023-01-09 14:48:24','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2220',0,'revision','',0),(2222,1,'2023-01-09 14:49:25','2023-01-09 14:49:25','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n Name: [custom_query_paramter paramter_type=\'name\']<p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-09 14:49:25','2023-01-09 14:49:25','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2222',0,'revision','',0),(2223,1,'2023-01-09 14:49:25','2023-01-09 14:49:25','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n Name: [custom_query_paramter paramter_type=\'name\']<p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-09 14:49:25','2023-01-09 14:49:25','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2223',0,'revision','',0),(2224,1,'2023-01-09 14:49:25','2023-01-09 14:49:25','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n Name: [custom_query_paramter paramter_type=\'name\']Name: [custom_query_paramter paramter_type=\'name\']<p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-09 14:49:25','2023-01-09 14:49:25','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2224',0,'revision','',0),(2225,1,'2023-01-09 14:50:21','2023-01-09 14:50:21','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n Name: [custom_query_paramter paramter_type=\'name\']Name: [custom_query_paramter paramter_type=\'name\']<p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-09 14:50:21','2023-01-09 14:50:21','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2225',0,'revision','',0),(2226,1,'2023-01-09 14:50:21','2023-01-09 14:50:21','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n Name: [custom_query_paramter paramter_type=\'name\']Name: [custom_query_paramter paramter_type=\'name\']<p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-09 14:50:21','2023-01-09 14:50:21','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2226',0,'revision','',0),(2227,1,'2023-01-09 14:50:21','2023-01-09 14:50:21','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Email: [custom_query_paramter paramter_type=\'pname\']</p><p>Email: [custom_query_paramter paramter_type=\'pl-name\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-09 14:50:21','2023-01-09 14:50:21','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2227',0,'revision','',0),(2228,1,'2023-01-09 14:51:48','2023-01-09 14:51:48','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Email: [custom_query_paramter paramter_type=\'pname\']</p><p>Email: [custom_query_paramter paramter_type=\'pl-name\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-09 14:51:48','2023-01-09 14:51:48','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2228',0,'revision','',0),(2229,1,'2023-01-09 14:51:48','2023-01-09 14:51:48','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Email: [custom_query_paramter paramter_type=\'pname\']</p><p>Email: [custom_query_paramter paramter_type=\'pl-name\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-09 14:51:48','2023-01-09 14:51:48','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2229',0,'revision','',0),(2230,1,'2023-01-09 14:51:48','2023-01-09 14:51:48','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-09 14:51:48','2023-01-09 14:51:48','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2230',0,'revision','',0),(2231,1,'2023-01-09 14:53:34','2023-01-09 14:53:34','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-09 14:53:34','2023-01-09 14:53:34','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2231',0,'revision','',0),(2232,1,'2023-01-09 14:53:34','2023-01-09 14:53:34','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-09 14:53:34','2023-01-09 14:53:34','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2232',0,'revision','',0),(2233,1,'2023-01-09 14:53:34','2023-01-09 14:53:34','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-09 14:53:34','2023-01-09 14:53:34','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2233',0,'revision','',0),(2234,1,'2023-01-09 14:53:50','2023-01-09 14:53:50','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-09 14:53:50','2023-01-09 14:53:50','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2234',0,'revision','',0),(2235,1,'2023-01-09 14:53:50','2023-01-09 14:53:50','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-09 14:53:50','2023-01-09 14:53:50','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2235',0,'revision','',0),(2236,1,'2023-01-09 14:53:50','2023-01-09 14:53:50','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-09 14:53:50','2023-01-09 14:53:50','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2236',0,'revision','',0),(2237,1,'2023-01-09 14:54:20','2023-01-09 14:54:20','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-09 14:54:20','2023-01-09 14:54:20','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2237',0,'revision','',0),(2238,1,'2023-01-09 14:54:20','2023-01-09 14:54:20','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-09 14:54:20','2023-01-09 14:54:20','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2238',0,'revision','',0),(2239,1,'2023-01-09 14:54:20','2023-01-09 14:54:20','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-09 14:54:20','2023-01-09 14:54:20','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2239',0,'revision','',0),(2240,1,'2023-01-09 14:56:16','2023-01-09 14:56:16','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-09 14:56:16','2023-01-09 14:56:16','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2240',0,'revision','',0),(2241,1,'2023-01-09 14:56:16','2023-01-09 14:56:16','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-09 14:56:16','2023-01-09 14:56:16','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2241',0,'revision','',0),(2242,1,'2023-01-09 14:56:16','2023-01-09 14:56:16','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Price: [custom_query_paramter paramter_type=\'price\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-09 14:56:16','2023-01-09 14:56:16','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2242',0,'revision','',0),(2243,1,'2023-01-09 14:58:21','2023-01-09 14:58:21','<style>/*! elementor - v3.9.0 - 06-12-2022 */<br />\r\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>\r\n\r\n<img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" sizes=\"(max-width: 863px) 100vw, 863px\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" alt=\"\" width=\"863\" height=\"353\" />\r\n\r\n<strong>Your Request Has Been Received.</strong>\r\n\r\n<style>/*! elementor - v3.9.0 - 06-12-2022 */<br />\r\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>\r\n<h2>We Appreciate Your Interest in Our Product</h2>\r\nName: [custom_query_paramter paramter_type=\'name\']\r\n\r\nEmail: [custom_query_paramter paramter_type=\'email\']\r\n\r\nProduct Name: [custom_query_paramter paramter_type=\'pname\']\r\n\r\nPlan Name: [custom_query_paramter paramter_type=\'pname\']\r\n\r\nPrice: [custom_query_paramter paramter_type=\'price\']\r\n\r\n<strong><em>Stay Connected with SubscriptionFlow!</em></strong>\r\n\r\n<style>/*! elementor - v3.9.0 - 06-12-2022 */<br />\r\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-09 14:58:21','2023-01-09 14:58:21','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2243',0,'revision','',0),(2245,1,'2023-01-10 07:30:22','2023-01-10 07:30:22','<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>Sale Products</h2> \n <ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":20,"gutter_vr":40,"animation":"default","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 3><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Test Product 3\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-3/\">Test Product 3</a></h2><del aria-hidden=\"true\">$110.00</del> <ins>$75.00</ins><a rel=\"nofollow\" aria-label=\"Add “Test Product 3” to your cart\" data-product_id=\"2100\" data-product_sku=\"547568769-1-1\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-3//?add-to-cart=2100\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Test Product 2\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-2/\">Test Product 2</a></h2><del aria-hidden=\"true\">$110.00</del> <ins>$75.00</ins><a rel=\"nofollow\" aria-label=\"Add “Test Product 2” to your cart\" data-product_id=\"2099\" data-product_sku=\"547568769-1\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-2//?add-to-cart=2099\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Test Product 1\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/laney-ribbed-maxi-dress/\">Test Product 1</a></h2><del aria-hidden=\"true\">$110.00</del> <ins>$75.00</ins><a rel=\"nofollow\" aria-label=\"Add “Test Product 1” to your cart\" data-product_id=\"409\" data-product_sku=\"547568769\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/laney-ribbed-maxi-dress//?add-to-cart=409\">Add to Cart</a></article></section>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:30:22','2023-01-10 07:30:22','',18,'https://wordpressdemo.subscriptionflow.com/?p=2245',0,'revision','',0),(2246,1,'2023-01-10 07:30:22','2023-01-10 07:30:22','<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>Sale Products</h2> \n <ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":20,"gutter_vr":40,"animation":"default","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 3><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Test Product 3\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-3/\">Test Product 3</a></h2><del aria-hidden=\"true\">$110.00</del> <ins>$75.00</ins><a rel=\"nofollow\" aria-label=\"Add “Test Product 3” to your cart\" data-product_id=\"2100\" data-product_sku=\"547568769-1-1\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-3//?add-to-cart=2100\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Test Product 2\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-2/\">Test Product 2</a></h2><del aria-hidden=\"true\">$110.00</del> <ins>$75.00</ins><a rel=\"nofollow\" aria-label=\"Add “Test Product 2” to your cart\" data-product_id=\"2099\" data-product_sku=\"547568769-1\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-2//?add-to-cart=2099\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Test Product 1\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/laney-ribbed-maxi-dress/\">Test Product 1</a></h2><del aria-hidden=\"true\">$110.00</del> <ins>$75.00</ins><a rel=\"nofollow\" aria-label=\"Add “Test Product 1” to your cart\" data-product_id=\"409\" data-product_sku=\"547568769\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/laney-ribbed-maxi-dress//?add-to-cart=409\">Add to Cart</a></article></section>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:30:22','2023-01-10 07:30:22','',18,'https://wordpressdemo.subscriptionflow.com/?p=2246',0,'revision','',0),(2247,1,'2023-01-10 07:30:22','2023-01-10 07:30:22','<h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <style>/*! elementor - v3.9.0 - 06-12-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>Sale Products</h2> \n <ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":20,"gutter_vr":40,"animation":"default","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 3><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Test Product 3\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/?post_type=product&p=2100\">Test Product 3</a></h2><del aria-hidden=\"true\">$110.00</del> <ins>$75.00</ins><a rel=\"nofollow\" aria-label=\"Add “Test Product 3” to your cart\" data-product_id=\"2100\" data-product_sku=\"547568769-1-1\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/?post_type=product&p=2100/?add-to-cart=2100\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Monthly Subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-2/\">Monthly Subscription</a></h2>$50.00<a rel=\"nofollow\" aria-label=\"Add “Monthly Subscription” to your cart\" data-product_id=\"2099\" data-product_sku=\"547568769-1\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-2//?add-to-cart=2099\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Weekly Subscriptions\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/weekly-subscription/\">Weekly Subscriptions</a></h2>$10.00<a rel=\"nofollow\" aria-label=\"Add “Weekly Subscriptions” to your cart\" data-product_id=\"409\" data-product_sku=\"547568769\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/weekly-subscription//?add-to-cart=409\">Add to Cart</a></article></section>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:30:22','2023-01-10 07:30:22','',18,'https://wordpressdemo.subscriptionflow.com/?p=2247',0,'revision','',0),(2249,1,'2023-01-10 07:32:52','2023-01-10 07:32:52','<h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <style>/*! elementor - v3.9.0 - 06-12-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>Sale Products</h2> \n <ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":20,"gutter_vr":40,"animation":"default","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 3><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Test Product 3\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/?post_type=product&p=2100\">Test Product 3</a></h2><del aria-hidden=\"true\">$110.00</del> <ins>$75.00</ins><a rel=\"nofollow\" aria-label=\"Add “Test Product 3” to your cart\" data-product_id=\"2100\" data-product_sku=\"547568769-1-1\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/?post_type=product&p=2100/?add-to-cart=2100\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Monthly Subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-2/\">Monthly Subscription</a></h2>$50.00<a rel=\"nofollow\" aria-label=\"Add “Monthly Subscription” to your cart\" data-product_id=\"2099\" data-product_sku=\"547568769-1\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-2//?add-to-cart=2099\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Weekly Subscriptions\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/weekly-subscription/\">Weekly Subscriptions</a></h2>$10.00<a rel=\"nofollow\" aria-label=\"Add “Weekly Subscriptions” to your cart\" data-product_id=\"409\" data-product_sku=\"547568769\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/weekly-subscription//?add-to-cart=409\">Add to Cart</a></article></section>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:32:52','2023-01-10 07:32:52','',18,'https://wordpressdemo.subscriptionflow.com/?p=2249',0,'revision','',0),(2250,1,'2023-01-10 07:32:52','2023-01-10 07:32:52','<h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <style>/*! elementor - v3.9.0 - 06-12-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>Sale Products</h2> \n <ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":20,"gutter_vr":40,"animation":"default","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 3><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Test Product 3\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/?post_type=product&p=2100\">Test Product 3</a></h2><del aria-hidden=\"true\">$110.00</del> <ins>$75.00</ins><a rel=\"nofollow\" aria-label=\"Add “Test Product 3” to your cart\" data-product_id=\"2100\" data-product_sku=\"547568769-1-1\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/?post_type=product&p=2100/?add-to-cart=2100\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Monthly Subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-2/\">Monthly Subscription</a></h2>$50.00<a rel=\"nofollow\" aria-label=\"Add “Monthly Subscription” to your cart\" data-product_id=\"2099\" data-product_sku=\"547568769-1\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-2//?add-to-cart=2099\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Weekly Subscriptions\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/weekly-subscription/\">Weekly Subscriptions</a></h2>$10.00<a rel=\"nofollow\" aria-label=\"Add “Weekly Subscriptions” to your cart\" data-product_id=\"409\" data-product_sku=\"547568769\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/weekly-subscription//?add-to-cart=409\">Add to Cart</a></article></section>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:32:52','2023-01-10 07:32:52','',18,'https://wordpressdemo.subscriptionflow.com/?p=2250',0,'revision','',0),(2251,1,'2023-01-10 07:32:52','2023-01-10 07:32:52','<h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <style>/*! elementor - v3.9.0 - 06-12-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>Sale Products</h2> \n <ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":20,"gutter_vr":40,"animation":"default","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 3><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Test Product 3\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/?post_type=product&p=2100\">Test Product 3</a></h2><del aria-hidden=\"true\">$110.00</del> <ins>$75.00</ins><a rel=\"nofollow\" aria-label=\"Add “Test Product 3” to your cart\" data-product_id=\"2100\" data-product_sku=\"547568769-1-1\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/?post_type=product&p=2100/?add-to-cart=2100\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Monthly Subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-2/\">Monthly Subscription</a></h2>$50.00<a rel=\"nofollow\" aria-label=\"Add “Monthly Subscription” to your cart\" data-product_id=\"2099\" data-product_sku=\"547568769-1\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-2//?add-to-cart=2099\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Weekly Subscriptions\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/weekly-subscription/\">Weekly Subscriptions</a></h2>$10.00<a rel=\"nofollow\" aria-label=\"Add “Weekly Subscriptions” to your cart\" data-product_id=\"409\" data-product_sku=\"547568769\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/weekly-subscription//?add-to-cart=409\">Add to Cart</a></article></section>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:32:52','2023-01-10 07:32:52','',18,'https://wordpressdemo.subscriptionflow.com/?p=2251',0,'revision','',0),(2252,1,'2023-01-10 07:33:50','2023-01-10 07:33:50','<h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <style>/*! elementor - v3.9.0 - 06-12-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>Sale Products</h2> \n <ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":20,"gutter_vr":40,"animation":"default","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 3><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Test Product 3\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/?post_type=product&p=2100\">Test Product 3</a></h2><del aria-hidden=\"true\">$110.00</del> <ins>$75.00</ins><a rel=\"nofollow\" aria-label=\"Add “Test Product 3” to your cart\" data-product_id=\"2100\" data-product_sku=\"547568769-1-1\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/?post_type=product&p=2100/?add-to-cart=2100\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Monthly Subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-2/\">Monthly Subscription</a></h2>$50.00<a rel=\"nofollow\" aria-label=\"Add “Monthly Subscription” to your cart\" data-product_id=\"2099\" data-product_sku=\"547568769-1\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-2//?add-to-cart=2099\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Weekly Subscriptions\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/weekly-subscription/\">Weekly Subscriptions</a></h2>$10.00<a rel=\"nofollow\" aria-label=\"Add “Weekly Subscriptions” to your cart\" data-product_id=\"409\" data-product_sku=\"547568769\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/weekly-subscription//?add-to-cart=409\">Add to Cart</a></article></section>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:33:50','2023-01-10 07:33:50','',18,'https://wordpressdemo.subscriptionflow.com/?p=2252',0,'revision','',0),(2253,1,'2023-01-10 07:33:50','2023-01-10 07:33:50','<h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <style>/*! elementor - v3.9.0 - 06-12-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>Sale Products</h2> \n <ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":20,"gutter_vr":40,"animation":"default","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 3><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Test Product 3\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/?post_type=product&p=2100\">Test Product 3</a></h2><del aria-hidden=\"true\">$110.00</del> <ins>$75.00</ins><a rel=\"nofollow\" aria-label=\"Add “Test Product 3” to your cart\" data-product_id=\"2100\" data-product_sku=\"547568769-1-1\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/?post_type=product&p=2100/?add-to-cart=2100\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Monthly Subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-2/\">Monthly Subscription</a></h2>$50.00<a rel=\"nofollow\" aria-label=\"Add “Monthly Subscription” to your cart\" data-product_id=\"2099\" data-product_sku=\"547568769-1\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-2//?add-to-cart=2099\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Weekly Subscriptions\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/weekly-subscription/\">Weekly Subscriptions</a></h2>$10.00<a rel=\"nofollow\" aria-label=\"Add “Weekly Subscriptions” to your cart\" data-product_id=\"409\" data-product_sku=\"547568769\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/weekly-subscription//?add-to-cart=409\">Add to Cart</a></article></section>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:33:50','2023-01-10 07:33:50','',18,'https://wordpressdemo.subscriptionflow.com/?p=2253',0,'revision','',0),(2254,1,'2023-01-10 07:33:50','2023-01-10 07:33:50','<h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <style>/*! elementor - v3.9.0 - 06-12-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>Sale Products</h2> \n <ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":20,"gutter_vr":40,"animation":"default","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 3><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Test Product 3\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/?post_type=product&p=2100\">Test Product 3</a></h2><del aria-hidden=\"true\">$110.00</del> <ins>$75.00</ins><a rel=\"nofollow\" aria-label=\"Add “Test Product 3” to your cart\" data-product_id=\"2100\" data-product_sku=\"547568769-1-1\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/?post_type=product&p=2100/?add-to-cart=2100\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Monthly Subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-2/\">Monthly Subscription</a></h2>$50.00<a rel=\"nofollow\" aria-label=\"Add “Monthly Subscription” to your cart\" data-product_id=\"2099\" data-product_sku=\"547568769-1\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-2//?add-to-cart=2099\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Weekly Subscriptions\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/weekly-subscription/\">Weekly Subscriptions</a></h2>$10.00<a rel=\"nofollow\" aria-label=\"Add “Weekly Subscriptions” to your cart\" data-product_id=\"409\" data-product_sku=\"547568769\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/weekly-subscription//?add-to-cart=409\">Add to Cart</a></article></section>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:33:50','2023-01-10 07:33:50','',18,'https://wordpressdemo.subscriptionflow.com/?p=2254',0,'revision','',0),(2255,1,'2023-01-10 07:34:09','2023-01-10 07:34:09','<h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <style>/*! elementor - v3.9.0 - 06-12-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>Sale Products</h2> \n <ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":20,"gutter_vr":40,"animation":"default","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 3><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Test Product 3\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/?post_type=product&p=2100\">Test Product 3</a></h2><del aria-hidden=\"true\">$110.00</del> <ins>$75.00</ins><a rel=\"nofollow\" aria-label=\"Add “Test Product 3” to your cart\" data-product_id=\"2100\" data-product_sku=\"547568769-1-1\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/?post_type=product&p=2100/?add-to-cart=2100\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Monthly Subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-2/\">Monthly Subscription</a></h2>$50.00<a rel=\"nofollow\" aria-label=\"Add “Monthly Subscription” to your cart\" data-product_id=\"2099\" data-product_sku=\"547568769-1\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-2//?add-to-cart=2099\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Weekly Subscriptions\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/weekly-subscription/\">Weekly Subscriptions</a></h2>$10.00<a rel=\"nofollow\" aria-label=\"Add “Weekly Subscriptions” to your cart\" data-product_id=\"409\" data-product_sku=\"547568769\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/weekly-subscription//?add-to-cart=409\">Add to Cart</a></article></section>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:34:09','2023-01-10 07:34:09','',18,'https://wordpressdemo.subscriptionflow.com/?p=2255',0,'revision','',0),(2256,1,'2023-01-10 07:34:09','2023-01-10 07:34:09','<h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <style>/*! elementor - v3.9.0 - 06-12-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>Sale Products</h2> \n <ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":20,"gutter_vr":40,"animation":"default","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 3><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Test Product 3\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/?post_type=product&p=2100\">Test Product 3</a></h2><del aria-hidden=\"true\">$110.00</del> <ins>$75.00</ins><a rel=\"nofollow\" aria-label=\"Add “Test Product 3” to your cart\" data-product_id=\"2100\" data-product_sku=\"547568769-1-1\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/?post_type=product&p=2100/?add-to-cart=2100\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Monthly Subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-2/\">Monthly Subscription</a></h2>$50.00<a rel=\"nofollow\" aria-label=\"Add “Monthly Subscription” to your cart\" data-product_id=\"2099\" data-product_sku=\"547568769-1\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-2//?add-to-cart=2099\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Weekly Subscriptions\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/weekly-subscription/\">Weekly Subscriptions</a></h2>$10.00<a rel=\"nofollow\" aria-label=\"Add “Weekly Subscriptions” to your cart\" data-product_id=\"409\" data-product_sku=\"547568769\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/weekly-subscription//?add-to-cart=409\">Add to Cart</a></article></section>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:34:09','2023-01-10 07:34:09','',18,'https://wordpressdemo.subscriptionflow.com/?p=2256',0,'revision','',0),(2257,1,'2023-01-10 07:34:09','2023-01-10 07:34:09','<h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <style>/*! elementor - v3.9.0 - 06-12-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>Sale Products</h2> \n <ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":20,"gutter_vr":40,"animation":"default","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 3><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Test Product 3\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/?post_type=product&p=2100\">Test Product 3</a></h2><del aria-hidden=\"true\">$110.00</del> <ins>$75.00</ins><a rel=\"nofollow\" aria-label=\"Add “Test Product 3” to your cart\" data-product_id=\"2100\" data-product_sku=\"547568769-1-1\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/?post_type=product&p=2100/?add-to-cart=2100\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Monthly Subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-2/\">Monthly Subscription</a></h2>$50.00<a rel=\"nofollow\" aria-label=\"Add “Monthly Subscription” to your cart\" data-product_id=\"2099\" data-product_sku=\"547568769-1\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-2//?add-to-cart=2099\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Weekly Subscriptions\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/weekly-subscription/\">Weekly Subscriptions</a></h2>$10.00<a rel=\"nofollow\" aria-label=\"Add “Weekly Subscriptions” to your cart\" data-product_id=\"409\" data-product_sku=\"547568769\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/weekly-subscription//?add-to-cart=409\">Add to Cart</a></article></section>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:34:09','2023-01-10 07:34:09','',18,'https://wordpressdemo.subscriptionflow.com/?p=2257',0,'revision','',0),(2258,1,'2023-01-10 07:35:22','2023-01-10 07:35:22','<h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <style>/*! elementor - v3.9.0 - 06-12-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>Sale Products</h2> \n <ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":20,"gutter_vr":40,"animation":"default","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 3><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Test Product 3\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/?post_type=product&p=2100\">Test Product 3</a></h2><del aria-hidden=\"true\">$110.00</del> <ins>$75.00</ins><a rel=\"nofollow\" aria-label=\"Add “Test Product 3” to your cart\" data-product_id=\"2100\" data-product_sku=\"547568769-1-1\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/?post_type=product&p=2100/?add-to-cart=2100\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Monthly Subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-2/\">Monthly Subscription</a></h2>$50.00<a rel=\"nofollow\" aria-label=\"Add “Monthly Subscription” to your cart\" data-product_id=\"2099\" data-product_sku=\"547568769-1\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-2//?add-to-cart=2099\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Weekly Subscriptions\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/weekly-subscription/\">Weekly Subscriptions</a></h2>$10.00<a rel=\"nofollow\" aria-label=\"Add “Weekly Subscriptions” to your cart\" data-product_id=\"409\" data-product_sku=\"547568769\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/weekly-subscription//?add-to-cart=409\">Add to Cart</a></article></section>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:35:22','2023-01-10 07:35:22','',18,'https://wordpressdemo.subscriptionflow.com/?p=2258',0,'revision','',0),(2259,1,'2023-01-10 07:35:22','2023-01-10 07:35:22','<h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <style>/*! elementor - v3.9.0 - 06-12-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>Sale Products</h2> \n <ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":20,"gutter_vr":40,"animation":"default","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 3><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Test Product 3\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/?post_type=product&p=2100\">Test Product 3</a></h2><del aria-hidden=\"true\">$110.00</del> <ins>$75.00</ins><a rel=\"nofollow\" aria-label=\"Add “Test Product 3” to your cart\" data-product_id=\"2100\" data-product_sku=\"547568769-1-1\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/?post_type=product&p=2100/?add-to-cart=2100\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Monthly Subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-2/\">Monthly Subscription</a></h2>$50.00<a rel=\"nofollow\" aria-label=\"Add “Monthly Subscription” to your cart\" data-product_id=\"2099\" data-product_sku=\"547568769-1\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-2//?add-to-cart=2099\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Weekly Subscriptions\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/weekly-subscription/\">Weekly Subscriptions</a></h2>$10.00<a rel=\"nofollow\" aria-label=\"Add “Weekly Subscriptions” to your cart\" data-product_id=\"409\" data-product_sku=\"547568769\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/weekly-subscription//?add-to-cart=409\">Add to Cart</a></article></section>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:35:22','2023-01-10 07:35:22','',18,'https://wordpressdemo.subscriptionflow.com/?p=2259',0,'revision','',0),(2260,1,'2023-01-10 07:35:22','2023-01-10 07:35:22','<h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <style>/*! elementor - v3.9.0 - 06-12-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>Sale Products</h2> \n <ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":20,"gutter_vr":40,"animation":"default","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 3><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Test Product 3\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/?post_type=product&p=2100\">Test Product 3</a></h2><del aria-hidden=\"true\">$110.00</del> <ins>$75.00</ins><a rel=\"nofollow\" aria-label=\"Add “Test Product 3” to your cart\" data-product_id=\"2100\" data-product_sku=\"547568769-1-1\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/?post_type=product&p=2100/?add-to-cart=2100\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Monthly Subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-2/\">Monthly Subscription</a></h2>$50.00<a rel=\"nofollow\" aria-label=\"Add “Monthly Subscription” to your cart\" data-product_id=\"2099\" data-product_sku=\"547568769-1\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-2//?add-to-cart=2099\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Weekly Subscriptions\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/weekly-subscription/\">Weekly Subscriptions</a></h2>$10.00<a rel=\"nofollow\" aria-label=\"Add “Weekly Subscriptions” to your cart\" data-product_id=\"409\" data-product_sku=\"547568769\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/weekly-subscription//?add-to-cart=409\">Add to Cart</a></article></section>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:35:22','2023-01-10 07:35:22','',18,'https://wordpressdemo.subscriptionflow.com/?p=2260',0,'revision','',0),(2261,1,'2023-01-10 07:36:07','2023-01-10 07:36:07','<h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <style>/*! elementor - v3.9.0 - 06-12-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>Sale Products</h2> \n <ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":20,"gutter_vr":40,"animation":"default","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 3><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Test Product 3\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/?post_type=product&p=2100\">Test Product 3</a></h2><del aria-hidden=\"true\">$110.00</del> <ins>$75.00</ins><a rel=\"nofollow\" aria-label=\"Add “Test Product 3” to your cart\" data-product_id=\"2100\" data-product_sku=\"547568769-1-1\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/?post_type=product&p=2100/?add-to-cart=2100\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Monthly Subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-2/\">Monthly Subscription</a></h2>$50.00<a rel=\"nofollow\" aria-label=\"Add “Monthly Subscription” to your cart\" data-product_id=\"2099\" data-product_sku=\"547568769-1\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-2//?add-to-cart=2099\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Weekly Subscriptions\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/weekly-subscription/\">Weekly Subscriptions</a></h2>$10.00<a rel=\"nofollow\" aria-label=\"Add “Weekly Subscriptions” to your cart\" data-product_id=\"409\" data-product_sku=\"547568769\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/weekly-subscription//?add-to-cart=409\">Add to Cart</a></article></section>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:36:07','2023-01-10 07:36:07','',18,'https://wordpressdemo.subscriptionflow.com/?p=2261',0,'revision','',0),(2262,1,'2023-01-10 07:36:07','2023-01-10 07:36:07','<h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <style>/*! elementor - v3.9.0 - 06-12-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>Sale Products</h2> \n <ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":20,"gutter_vr":40,"animation":"default","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 3><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Test Product 3\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/?post_type=product&p=2100\">Test Product 3</a></h2><del aria-hidden=\"true\">$110.00</del> <ins>$75.00</ins><a rel=\"nofollow\" aria-label=\"Add “Test Product 3” to your cart\" data-product_id=\"2100\" data-product_sku=\"547568769-1-1\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/?post_type=product&p=2100/?add-to-cart=2100\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Monthly Subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-2/\">Monthly Subscription</a></h2>$50.00<a rel=\"nofollow\" aria-label=\"Add “Monthly Subscription” to your cart\" data-product_id=\"2099\" data-product_sku=\"547568769-1\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/test-product-2//?add-to-cart=2099\">Add to Cart</a></article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/BCT21-08-Blackc-scaled.webp\" alt=\"Weekly Subscriptions\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/weekly-subscription/\">Weekly Subscriptions</a></h2>$10.00<a rel=\"nofollow\" aria-label=\"Add “Weekly Subscriptions” to your cart\" data-product_id=\"409\" data-product_sku=\"547568769\" data-atc-popup=\"\" data-atc-animation=\"\" data-atc-fade-out-in=\"\" data-atc-animation-time=\"\" href=\"https://wordpressdemo.subscriptionflow.com/product/weekly-subscription//?add-to-cart=409\">Add to Cart</a></article></section>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:36:07','2023-01-10 07:36:07','',18,'https://wordpressdemo.subscriptionflow.com/?p=2262',0,'revision','',0),(2263,1,'2023-01-10 07:36:07','2023-01-10 07:36:07','<h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:36:07','2023-01-10 07:36:07','',18,'https://wordpressdemo.subscriptionflow.com/?p=2263',0,'revision','',0),(2264,1,'2023-01-10 07:37:27','2023-01-10 07:37:27','<h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:37:27','2023-01-10 07:37:27','',18,'https://wordpressdemo.subscriptionflow.com/?p=2264',0,'revision','',0),(2265,1,'2023-01-10 07:37:27','2023-01-10 07:37:27','<h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:37:27','2023-01-10 07:37:27','',18,'https://wordpressdemo.subscriptionflow.com/?p=2265',0,'revision','',0),(2266,1,'2023-01-10 07:37:28','2023-01-10 07:37:28','<h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:37:28','2023-01-10 07:37:28','',18,'https://wordpressdemo.subscriptionflow.com/?p=2266',0,'revision','',0),(2267,1,'2023-01-10 07:37:41','2023-01-10 07:37:41','<h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:37:41','2023-01-10 07:37:41','',18,'https://wordpressdemo.subscriptionflow.com/?p=2267',0,'revision','',0),(2268,1,'2023-01-10 07:37:41','2023-01-10 07:37:41','<h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:37:41','2023-01-10 07:37:41','',18,'https://wordpressdemo.subscriptionflow.com/?p=2268',0,'revision','',0),(2269,1,'2023-01-10 07:37:41','2023-01-10 07:37:41','<h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:37:41','2023-01-10 07:37:41','',18,'https://wordpressdemo.subscriptionflow.com/?p=2269',0,'revision','',0),(2270,1,'2023-01-10 07:37:53','2023-01-10 07:37:53','<h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:37:53','2023-01-10 07:37:53','',18,'https://wordpressdemo.subscriptionflow.com/?p=2270',0,'revision','',0),(2271,1,'2023-01-10 07:37:53','2023-01-10 07:37:53','<h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:37:53','2023-01-10 07:37:53','',18,'https://wordpressdemo.subscriptionflow.com/?p=2271',0,'revision','',0),(2272,1,'2023-01-10 07:37:53','2023-01-10 07:37:53','<h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:37:53','2023-01-10 07:37:53','',18,'https://wordpressdemo.subscriptionflow.com/?p=2272',0,'revision','',0),(2274,1,'2023-01-10 07:40:32','2023-01-10 07:40:32','<h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:40:32','2023-01-10 07:40:32','',18,'https://wordpressdemo.subscriptionflow.com/?p=2274',0,'revision','',0),(2275,1,'2023-01-10 07:40:32','2023-01-10 07:40:32','<h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:40:32','2023-01-10 07:40:32','',18,'https://wordpressdemo.subscriptionflow.com/?p=2275',0,'revision','',0),(2276,1,'2023-01-10 07:40:32','2023-01-10 07:40:32','<style>/*! elementor - v3.9.0 - 06-12-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>Subscription Management Software</h2> \n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:40:32','2023-01-10 07:40:32','',18,'https://wordpressdemo.subscriptionflow.com/?p=2276',0,'revision','',0),(2277,1,'2023-01-10 07:40:52','2023-01-10 07:40:52','<style>/*! elementor - v3.9.0 - 06-12-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>Subscription Management Software</h2> \n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:40:52','2023-01-10 07:40:52','',18,'https://wordpressdemo.subscriptionflow.com/?p=2277',0,'revision','',0),(2278,1,'2023-01-10 07:40:52','2023-01-10 07:40:52','<style>/*! elementor - v3.9.0 - 06-12-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>Subscription Management Software</h2> \n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:40:52','2023-01-10 07:40:52','',18,'https://wordpressdemo.subscriptionflow.com/?p=2278',0,'revision','',0),(2279,1,'2023-01-10 07:40:52','2023-01-10 07:40:52','<style>/*! elementor - v3.9.0 - 06-12-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>Subscription Management Software</h2> \n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:40:52','2023-01-10 07:40:52','',18,'https://wordpressdemo.subscriptionflow.com/?p=2279',0,'revision','',0),(2280,1,'2023-01-10 07:41:49','2023-01-10 07:41:49','<style>/*! elementor - v3.9.0 - 06-12-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>Subscription Management Software</h2> \n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:41:49','2023-01-10 07:41:49','',18,'https://wordpressdemo.subscriptionflow.com/?p=2280',0,'revision','',0),(2281,1,'2023-01-10 07:41:49','2023-01-10 07:41:49','<style>/*! elementor - v3.9.0 - 06-12-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>Subscription Management Software</h2> \n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:41:49','2023-01-10 07:41:49','',18,'https://wordpressdemo.subscriptionflow.com/?p=2281',0,'revision','',0),(2282,1,'2023-01-10 07:41:49','2023-01-10 07:41:49','<style>/*! elementor - v3.9.0 - 06-12-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>Subscription Management Software</h2> \n <p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.</p> \n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:41:49','2023-01-10 07:41:49','',18,'https://wordpressdemo.subscriptionflow.com/?p=2282',0,'revision','',0),(2283,1,'2023-01-10 07:44:00','2023-01-10 07:44:00','<style>/*! elementor - v3.9.0 - 06-12-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>Subscription Management Software</h2> \n <p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.</p> \n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:44:00','2023-01-10 07:44:00','',18,'https://wordpressdemo.subscriptionflow.com/?p=2283',0,'revision','',0),(2284,1,'2023-01-10 07:44:00','2023-01-10 07:44:00','<style>/*! elementor - v3.9.0 - 06-12-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>Subscription Management Software</h2> \n <p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.</p> \n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:44:00','2023-01-10 07:44:00','',18,'https://wordpressdemo.subscriptionflow.com/?p=2284',0,'revision','',0),(2285,1,'2023-01-10 07:44:00','2023-01-10 07:44:00','<style>/*! elementor - v3.9.0 - 06-12-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>Subscription Management Software</h2> \n <p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.</p> \n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>Magazine</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>eCommerce</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>Membership</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:44:00','2023-01-10 07:44:00','',18,'https://wordpressdemo.subscriptionflow.com/?p=2285',0,'revision','',0),(2286,1,'2023-01-10 07:46:04','2023-01-10 07:46:04','<style>/*! elementor - v3.9.0 - 06-12-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>Subscription Management Software</h2> \n <p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.</p> \n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>Magazine</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>eCommerce</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>Membership</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:46:04','2023-01-10 07:46:04','',18,'https://wordpressdemo.subscriptionflow.com/?p=2286',0,'revision','',0),(2287,1,'2023-01-10 07:46:04','2023-01-10 07:46:04','<style>/*! elementor - v3.9.0 - 06-12-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>Subscription Management Software</h2> \n <p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.</p> \n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>Magazine</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>eCommerce</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>Membership</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:46:04','2023-01-10 07:46:04','',18,'https://wordpressdemo.subscriptionflow.com/?p=2287',0,'revision','',0),(2288,1,'2023-01-10 07:46:04','2023-01-10 07:46:04','<style>/*! elementor - v3.9.0 - 06-12-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>Subscription Management Software</h2> \n <p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.</p> \n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/plans/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>Magazine</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>eCommerce</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>Membership</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 07:46:04','2023-01-10 07:46:04','',18,'https://wordpressdemo.subscriptionflow.com/?p=2288',0,'revision','',0),(2289,1,'2023-01-10 07:47:53','2023-01-10 07:47:53','<style>/*! elementor - v3.9.0 - 06-12-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>Professional Plan</h2> \n <iframe src=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/2939517a-580e-4203-bc7b-433f62fe55c3/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" height=\"2500\" width=\"300px\"></iframe>','Professional Plan','','publish','closed','closed','','professional-plan','','','2023-01-10 08:10:32','2023-01-10 08:10:32','',0,'https://wordpressdemo.subscriptionflow.com/?page_id=2289',0,'page','',0),(2290,1,'2023-01-10 07:47:53','2023-01-10 07:47:53','','Professional','','inherit','closed','closed','','2289-revision-v1','','','2023-01-10 07:47:53','2023-01-10 07:47:53','',2289,'https://wordpressdemo.subscriptionflow.com/?p=2290',0,'revision','',0),(2291,1,'2023-01-10 07:48:05','2023-01-10 07:48:05','','Professional Plan','','inherit','closed','closed','','2289-revision-v1','','','2023-01-10 07:48:05','2023-01-10 07:48:05','',2289,'https://wordpressdemo.subscriptionflow.com/?p=2291',0,'revision','',0),(2293,1,'2023-01-10 08:08:14','2023-01-10 08:08:14','','Professional Plan','','inherit','closed','closed','','2289-revision-v1','','','2023-01-10 08:08:14','2023-01-10 08:08:14','',2289,'https://wordpressdemo.subscriptionflow.com/?p=2293',0,'revision','',0),(2294,1,'2023-01-10 08:08:14','2023-01-10 08:08:14','','Professional Plan','','inherit','closed','closed','','2289-revision-v1','','','2023-01-10 08:08:14','2023-01-10 08:08:14','',2289,'https://wordpressdemo.subscriptionflow.com/?p=2294',0,'revision','',0),(2295,1,'2023-01-10 08:08:14','2023-01-10 08:08:14','<style>/*! elementor - v3.9.0 - 06-12-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>Professional</h2> \n <iframe src=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/2939517a-580e-4203-bc7b-433f62fe55c3/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" height=\"100%\" width=\"300px\"></iframe>','Professional Plan','','inherit','closed','closed','','2289-revision-v1','','','2023-01-10 08:08:14','2023-01-10 08:08:14','',2289,'https://wordpressdemo.subscriptionflow.com/?p=2295',0,'revision','',0),(2296,1,'2023-01-10 08:09:49','2023-01-10 08:09:49','<style>/*! elementor - v3.9.0 - 06-12-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>Professional</h2> \n <iframe src=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/2939517a-580e-4203-bc7b-433f62fe55c3/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" height=\"100%\" width=\"300px\"></iframe>','Professional Plan','','inherit','closed','closed','','2289-revision-v1','','','2023-01-10 08:09:49','2023-01-10 08:09:49','',2289,'https://wordpressdemo.subscriptionflow.com/?p=2296',0,'revision','',0),(2297,1,'2023-01-10 08:09:49','2023-01-10 08:09:49','<style>/*! elementor - v3.9.0 - 06-12-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>Professional</h2> \n <iframe src=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/2939517a-580e-4203-bc7b-433f62fe55c3/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" height=\"100%\" width=\"300px\"></iframe>','Professional Plan','','inherit','closed','closed','','2289-revision-v1','','','2023-01-10 08:09:49','2023-01-10 08:09:49','',2289,'https://wordpressdemo.subscriptionflow.com/?p=2297',0,'revision','',0),(2298,1,'2023-01-10 08:09:49','2023-01-10 08:09:49','<style>/*! elementor - v3.9.0 - 06-12-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>Professional</h2> \n <iframe src=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/2939517a-580e-4203-bc7b-433f62fe55c3/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" height=\"2500\" width=\"300px\"></iframe>','Professional Plan','','inherit','closed','closed','','2289-revision-v1','','','2023-01-10 08:09:49','2023-01-10 08:09:49','',2289,'https://wordpressdemo.subscriptionflow.com/?p=2298',0,'revision','',0),(2299,1,'2023-01-10 08:10:32','2023-01-10 08:10:32','<style>/*! elementor - v3.9.0 - 06-12-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>Professional</h2> \n <iframe src=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/2939517a-580e-4203-bc7b-433f62fe55c3/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" height=\"2500\" width=\"300px\"></iframe>','Professional Plan','','inherit','closed','closed','','2289-revision-v1','','','2023-01-10 08:10:32','2023-01-10 08:10:32','',2289,'https://wordpressdemo.subscriptionflow.com/?p=2299',0,'revision','',0),(2300,1,'2023-01-10 08:10:32','2023-01-10 08:10:32','<style>/*! elementor - v3.9.0 - 06-12-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>Professional</h2> \n <iframe src=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/2939517a-580e-4203-bc7b-433f62fe55c3/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" height=\"2500\" width=\"300px\"></iframe>','Professional Plan','','inherit','closed','closed','','2289-revision-v1','','','2023-01-10 08:10:32','2023-01-10 08:10:32','',2289,'https://wordpressdemo.subscriptionflow.com/?p=2300',0,'revision','',0),(2301,1,'2023-01-10 08:10:32','2023-01-10 08:10:32','<style>/*! elementor - v3.9.0 - 06-12-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>Professional Plan</h2> \n <iframe src=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/2939517a-580e-4203-bc7b-433f62fe55c3/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" height=\"2500\" width=\"300px\"></iframe>','Professional Plan','','inherit','closed','closed','','2289-revision-v1','','','2023-01-10 08:10:32','2023-01-10 08:10:32','',2289,'https://wordpressdemo.subscriptionflow.com/?p=2301',0,'revision','',0),(2302,1,'2023-01-10 08:12:12','2023-01-10 08:12:12','<style>/*! elementor - v3.9.0 - 06-12-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>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/2939517a-580e-4203-bc7b-433f62fe55c3/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/47669555-7ea2-4125-bda7-0a6e6c0919d8/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-01-10 08:12:12','2023-01-10 08:12:12','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2302',0,'revision','',0),(2303,1,'2023-01-10 08:12:12','2023-01-10 08:12:12','<style>/*! elementor - v3.9.0 - 06-12-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>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/2939517a-580e-4203-bc7b-433f62fe55c3/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/47669555-7ea2-4125-bda7-0a6e6c0919d8/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-01-10 08:12:12','2023-01-10 08:12:12','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2303',0,'revision','',0),(2304,1,'2023-01-10 08:12:12','2023-01-10 08:12:12','<style>/*! elementor - v3.9.0 - 06-12-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>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/47669555-7ea2-4125-bda7-0a6e6c0919d8/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-01-10 08:12:12','2023-01-10 08:12:12','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2304',0,'revision','',0),(2305,1,'2023-01-10 08:16:55','2023-01-10 08:16:55','<style>/*! elementor - v3.9.0 - 06-12-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>Subscription Management Software</h2> \n <p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.</p> \n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/plans/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>Magazine</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>eCommerce</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>Membership</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 08:16:55','2023-01-10 08:16:55','',18,'https://wordpressdemo.subscriptionflow.com/?p=2305',0,'revision','',0),(2306,1,'2023-01-10 08:16:55','2023-01-10 08:16:55','<style>/*! elementor - v3.9.0 - 06-12-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>Subscription Management Software</h2> \n <p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.</p> \n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/plans/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>Magazine</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>eCommerce</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>Membership</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 08:16:55','2023-01-10 08:16:55','',18,'https://wordpressdemo.subscriptionflow.com/?p=2306',0,'revision','',0),(2307,1,'2023-01-10 08:16:55','2023-01-10 08:16:55','<style>/*! elementor - v3.9.0 - 06-12-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>Subscription Management Software</h2> \n <p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.</p> \n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/plans/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>Magazine</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>eCommerce</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/shop/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>Membership</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 08:16:55','2023-01-10 08:16:55','',18,'https://wordpressdemo.subscriptionflow.com/?p=2307',0,'revision','',0),(2308,1,'2023-01-10 08:18:23','2023-01-10 08:18:23','<strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.','Shirt weekly Subscription','Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.','inherit','closed','closed','','409-autosave-v1','','','2023-01-10 08:18:23','2023-01-10 08:18:23','',409,'https://wordpressdemo.subscriptionflow.com/?p=2308',0,'revision','',0),(2309,1,'2023-01-10 08:25:16','2023-01-10 08:25:16','','colorful-socks-hanging-clothesline-image-isolated-white-background-47068759','','inherit','open','closed','','colorful-socks-hanging-clothesline-image-isolated-white-background-47068759','','','2023-01-10 08:25:16','2023-01-10 08:25:16','',409,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/colorful-socks-hanging-clothesline-image-isolated-white-background-47068759.jpg',0,'attachment','image/jpeg',0),(2310,1,'2023-01-10 08:25:54','2023-01-10 08:25:54','','7_ca8724d4-ae51-4375-b0fc-8388b123737d_1024x1024','','inherit','open','closed','','7_ca8724d4-ae51-4375-b0fc-8388b123737d_1024x1024','','','2023-01-10 08:25:54','2023-01-10 08:25:54','',2099,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/12/7_ca8724d4-ae51-4375-b0fc-8388b123737d_1024x1024.webp',0,'attachment','image/webp',0),(2311,1,'2023-01-10 08:25:55','2023-01-10 08:25:55','','colorful-socks-hanging-clothesline-image-isolated-white-background-47068759','','inherit','open','closed','','colorful-socks-hanging-clothesline-image-isolated-white-background-47068759-2','','','2023-01-10 08:25:55','2023-01-10 08:25:55','',2099,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/12/colorful-socks-hanging-clothesline-image-isolated-white-background-47068759.jpg',0,'attachment','image/jpeg',0),(2312,1,'2023-01-10 08:25:57','2023-01-10 08:25:57','','more-orphan-socks-odd-whose-mates-have-been-lost-hanging-clothesline-shot-white-background-35663687','','inherit','open','closed','','more-orphan-socks-odd-whose-mates-have-been-lost-hanging-clothesline-shot-white-background-35663687','','','2023-01-10 08:25:57','2023-01-10 08:25:57','',2099,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/12/more-orphan-socks-odd-whose-mates-have-been-lost-hanging-clothesline-shot-white-background-35663687.jpg',0,'attachment','image/jpeg',0),(2313,1,'2023-01-10 08:25:57','2023-01-10 08:25:57','','odd-socks-29336624','','inherit','open','closed','','odd-socks-29336624','','','2023-01-10 08:25:57','2023-01-10 08:25:57','',2099,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/12/odd-socks-29336624.jpg',0,'attachment','image/jpeg',0),(2314,1,'2023-01-10 08:27:03','2023-01-10 08:27:03','','images','','inherit','open','closed','','images','','','2023-01-10 08:27:03','2023-01-10 08:27:03','',409,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/images.jpeg',0,'attachment','image/jpeg',0),(2315,1,'2023-01-10 08:27:04','2023-01-10 08:27:04','','shirt_378037390_1000','','inherit','open','closed','','shirt_378037390_1000','','','2023-01-10 08:27:04','2023-01-10 08:27:04','',409,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/shirt_378037390_1000.jpg',0,'attachment','image/jpeg',0),(2316,1,'2023-01-10 08:27:05','2023-01-10 08:27:05','','TP2225.','','inherit','open','closed','','tp2225','','','2023-01-10 08:27:05','2023-01-10 08:27:05','',409,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/TP2225..jpg',0,'attachment','image/jpeg',0),(2317,1,'2023-01-10 08:29:26','2023-01-10 08:29:26','','Shop','','inherit','closed','closed','','1680-autosave-v1','','','2023-01-10 08:29:26','2023-01-10 08:29:26','',1680,'https://wordpressdemo.subscriptionflow.com/?p=2317',0,'revision','',0),(2318,1,'2023-01-10 08:32:55','2023-01-10 08:32:55','<style>/*! elementor - v3.9.0 - 06-12-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>Right Membership for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n Basic\n <h3>Basic</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Calendar Billing \n </section>\n <section>\n Usage-based (Metered) Billing \n </section>\n <section>\n 24/7 Support \n </section>\n 67.99\n € \n 59\n 99\n <a >\n Choose Plan\n </a>\n Save \n Standard\n <h3>Standard</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n € \n 249\n 99\n <a >\n Choose Plan\n </a>\n Premium\n <h3>Premium</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Calendar Billing \n </section>\n <section>\n Usage-based (Metered) Billing \n </section>\n € \n 99\n 99\n <a >\n Choose Plan\n </a>','Membership','','publish','closed','closed','','membership','','','2023-01-10 11:15:36','2023-01-10 11:15:36','',0,'https://wordpressdemo.subscriptionflow.com/?page_id=2318',0,'page','',0),(2319,1,'2023-01-10 08:32:46','2023-01-10 08:32:46','<style>/*! elementor - v3.9.0 - 06-12-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>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/47669555-7ea2-4125-bda7-0a6e6c0919d8/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-01-10 08:32:46','2023-01-10 08:32:46','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2319',0,'revision','',0),(2320,1,'2023-01-10 08:32:46','2023-01-10 08:32:46','<style>/*! elementor - v3.9.0 - 06-12-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>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/47669555-7ea2-4125-bda7-0a6e6c0919d8/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-01-10 08:32:46','2023-01-10 08:32:46','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2320',0,'revision','',0),(2321,1,'2023-01-10 08:32:46','2023-01-10 08:32:46','<style>/*! elementor - v3.9.0 - 06-12-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>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/47669555-7ea2-4125-bda7-0a6e6c0919d8/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-01-10 08:32:46','2023-01-10 08:32:46','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2321',0,'revision','',0),(2322,1,'2023-01-10 08:32:55','2023-01-10 08:32:55','','Membership','','inherit','closed','closed','','2318-revision-v1','','','2023-01-10 08:32:55','2023-01-10 08:32:55','',2318,'https://wordpressdemo.subscriptionflow.com/?p=2322',0,'revision','',0),(2323,1,'2023-01-10 08:34:30','2023-01-10 08:34:30','','Membership','','inherit','closed','closed','','2318-revision-v1','','','2023-01-10 08:34:30','2023-01-10 08:34:30','',2318,'https://wordpressdemo.subscriptionflow.com/?p=2323',0,'revision','',0),(2324,1,'2023-01-10 08:34:30','2023-01-10 08:34:30','','Membership','','inherit','closed','closed','','2318-revision-v1','','','2023-01-10 08:34:30','2023-01-10 08:34:30','',2318,'https://wordpressdemo.subscriptionflow.com/?p=2324',0,'revision','',0),(2325,1,'2023-01-10 08:34:30','2023-01-10 08:34:30','<style>/*! elementor - v3.9.0 - 06-12-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>Right Membership for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Basic</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Standard</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Premium</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/47669555-7ea2-4125-bda7-0a6e6c0919d8/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee','Membership','','inherit','closed','closed','','2318-revision-v1','','','2023-01-10 08:34:30','2023-01-10 08:34:30','',2318,'https://wordpressdemo.subscriptionflow.com/?p=2325',0,'revision','',0),(2326,1,'2023-01-10 08:35:49','2023-01-10 08:35:49','','placeholder.png','','inherit','open','closed','','placeholder-png-19','','','2023-01-10 08:35:49','2023-01-10 08:35:49','',0,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/placeholder-18.png',0,'attachment','image/png',0),(2327,1,'2023-01-10 08:35:49','2023-01-10 08:35:49','','placeholder.png','','inherit','open','closed','','placeholder-png-20','','','2023-01-10 08:35:49','2023-01-10 08:35:49','',0,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/placeholder-19.png',0,'attachment','image/png',0),(2328,1,'2023-01-10 08:35:50','2023-01-10 08:35:50','','placeholder.png','','inherit','open','closed','','placeholder-png-21','','','2023-01-10 08:35:50','2023-01-10 08:35:50','',0,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/placeholder-20.png',0,'attachment','image/png',0),(2329,1,'2023-01-10 08:35:50','2023-01-10 08:35:50','','placeholder.png','','inherit','open','closed','','placeholder-png-22','','','2023-01-10 08:35:50','2023-01-10 08:35:50','',0,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/placeholder-21.png',0,'attachment','image/png',0),(2330,1,'2023-01-10 08:35:51','2023-01-10 08:35:51','','placeholder.png','','inherit','open','closed','','placeholder-png-23','','','2023-01-10 08:35:51','2023-01-10 08:35:51','',0,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/placeholder-22.png',0,'attachment','image/png',0),(2331,1,'2023-01-10 08:35:51','2023-01-10 08:35:51','','placeholder.png','','inherit','open','closed','','placeholder-png-24','','','2023-01-10 08:35:51','2023-01-10 08:35:51','',0,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/placeholder-23.png',0,'attachment','image/png',0),(2332,1,'2023-01-10 08:39:08','2023-01-10 08:39:08','<style>/*! elementor - v3.9.0 - 06-12-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>Right Membership for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Basic</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Standard</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Premium</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/47669555-7ea2-4125-bda7-0a6e6c0919d8/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee','Membership','','inherit','closed','closed','','2318-revision-v1','','','2023-01-10 08:39:08','2023-01-10 08:39:08','',2318,'https://wordpressdemo.subscriptionflow.com/?p=2332',0,'revision','',0),(2333,1,'2023-01-10 08:39:08','2023-01-10 08:39:08','<style>/*! elementor - v3.9.0 - 06-12-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>Right Membership for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Basic</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Standard</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Premium</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/47669555-7ea2-4125-bda7-0a6e6c0919d8/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee','Membership','','inherit','closed','closed','','2318-revision-v1','','','2023-01-10 08:39:08','2023-01-10 08:39:08','',2318,'https://wordpressdemo.subscriptionflow.com/?p=2333',0,'revision','',0),(2334,1,'2023-01-10 08:39:08','2023-01-10 08:39:08','<style>/*! elementor - v3.9.0 - 06-12-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>Right Membership for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n Basic\n <h3>Basic</h3>\n <section>\n Unlimited Calls \n </section>\n <section>\n Free Hosting \n </section>\n <section>\n 500 MB of Storage Space \n </section>\n <section>\n 24/7 Support \n </section>\n 67.99\n € \n 59\n 99\n <a >\n Choose Plan\n </a>\n Save \n Standard\n <h3>Standard</h3>\n <section>\n Unlimited Calls \n </section>\n <section>\n Free Hosting \n </section>\n <section>\n 500 MB of Storage Space \n </section>\n <section>\n 24/7 Support \n </section>\n € \n 249\n 99\n <a >\n Choose Plan\n </a>\n Premium\n <h3>Premium</h3>\n <section>\n Unlimited Calls \n </section>\n <section>\n Free Hosting \n </section>\n <section>\n 500 MB of Storage Space \n </section>\n <section>\n 24/7 Support \n </section>\n € \n 99\n 99\n <a >\n Choose Plan\n </a>','Membership','','inherit','closed','closed','','2318-revision-v1','','','2023-01-10 08:39:08','2023-01-10 08:39:08','',2318,'https://wordpressdemo.subscriptionflow.com/?p=2334',0,'revision','',0),(2335,1,'2023-01-10 08:39:33','2023-01-10 08:39:33','<style>/*! elementor - v3.9.0 - 06-12-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>Right Membership for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n Basic\n <h3>Basic</h3>\n <section>\n Unlimited Calls \n </section>\n <section>\n Free Hosting \n </section>\n <section>\n 500 MB of Storage Space \n </section>\n <section>\n 24/7 Support \n </section>\n 67.99\n € \n 59\n 99\n <a >\n Choose Plan\n </a>\n Save \n Standard\n <h3>Standard</h3>\n <section>\n Unlimited Calls \n </section>\n <section>\n Free Hosting \n </section>\n <section>\n 500 MB of Storage Space \n </section>\n <section>\n 24/7 Support \n </section>\n € \n 249\n 99\n <a >\n Choose Plan\n </a>\n Premium\n <h3>Premium</h3>\n <section>\n Unlimited Calls \n </section>\n <section>\n Free Hosting \n </section>\n <section>\n 500 MB of Storage Space \n </section>\n <section>\n 24/7 Support \n </section>\n € \n 99\n 99\n <a >\n Choose Plan\n </a>','Membership','','inherit','closed','closed','','2318-revision-v1','','','2023-01-10 08:39:33','2023-01-10 08:39:33','',2318,'https://wordpressdemo.subscriptionflow.com/?p=2335',0,'revision','',0),(2336,1,'2023-01-10 08:39:33','2023-01-10 08:39:33','<style>/*! elementor - v3.9.0 - 06-12-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>Right Membership for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n Basic\n <h3>Basic</h3>\n <section>\n Unlimited Calls \n </section>\n <section>\n Free Hosting \n </section>\n <section>\n 500 MB of Storage Space \n </section>\n <section>\n 24/7 Support \n </section>\n 67.99\n € \n 59\n 99\n <a >\n Choose Plan\n </a>\n Save \n Standard\n <h3>Standard</h3>\n <section>\n Unlimited Calls \n </section>\n <section>\n Free Hosting \n </section>\n <section>\n 500 MB of Storage Space \n </section>\n <section>\n 24/7 Support \n </section>\n € \n 249\n 99\n <a >\n Choose Plan\n </a>\n Premium\n <h3>Premium</h3>\n <section>\n Unlimited Calls \n </section>\n <section>\n Free Hosting \n </section>\n <section>\n 500 MB of Storage Space \n </section>\n <section>\n 24/7 Support \n </section>\n € \n 99\n 99\n <a >\n Choose Plan\n </a>','Membership','','inherit','closed','closed','','2318-revision-v1','','','2023-01-10 08:39:33','2023-01-10 08:39:33','',2318,'https://wordpressdemo.subscriptionflow.com/?p=2336',0,'revision','',0),(2337,1,'2023-01-10 08:39:33','2023-01-10 08:39:33','<style>/*! elementor - v3.9.0 - 06-12-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>Right Membership for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n Basic\n <h3>Basic</h3>\n <section>\n Unlimited Calls \n </section>\n <section>\n Free Hosting \n </section>\n <section>\n 500 MB of Storage Space \n </section>\n <section>\n 24/7 Support \n </section>\n 67.99\n € \n 59\n 99\n <a >\n Choose Plan\n </a>\n Save \n Standard\n <h3>Standard</h3>\n <section>\n Unlimited Calls \n </section>\n <section>\n Free Hosting \n </section>\n <section>\n 500 MB of Storage Space \n </section>\n <section>\n 24/7 Support \n </section>\n € \n 249\n 99\n <a >\n Choose Plan\n </a>\n Premium\n <h3>Premium</h3>\n <section>\n Unlimited Calls \n </section>\n <section>\n Free Hosting \n </section>\n <section>\n 500 MB of Storage Space \n </section>\n <section>\n 24/7 Support \n </section>\n € \n 99\n 99\n <a >\n Choose Plan\n </a>','Membership','','inherit','closed','closed','','2318-revision-v1','','','2023-01-10 08:39:33','2023-01-10 08:39:33','',2318,'https://wordpressdemo.subscriptionflow.com/?p=2337',0,'revision','',0),(2338,1,'2023-01-10 08:39:36','2023-01-10 08:39:36','<style>/*! elementor - v3.9.0 - 06-12-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>Right Membership for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n Basic\n <h3>Basic</h3>\n <section>\n Unlimited Calls \n </section>\n <section>\n Free Hosting \n </section>\n <section>\n 500 MB of Storage Space \n </section>\n <section>\n 24/7 Support \n </section>\n 67.99\n € \n 59\n 99\n <a >\n Choose Plan\n </a>\n Save \n Standard\n <h3>Standard</h3>\n <section>\n Unlimited Calls \n </section>\n <section>\n Free Hosting \n </section>\n <section>\n 500 MB of Storage Space \n </section>\n <section>\n 24/7 Support \n </section>\n € \n 249\n 99\n <a >\n Choose Plan\n </a>\n Premium\n <h3>Premium</h3>\n <section>\n Unlimited Calls \n </section>\n <section>\n Free Hosting \n </section>\n <section>\n 500 MB of Storage Space \n </section>\n <section>\n 24/7 Support \n </section>\n € \n 99\n 99\n <a >\n Choose Plan\n </a>','Membership','','inherit','closed','closed','','2318-revision-v1','','','2023-01-10 08:39:36','2023-01-10 08:39:36','',2318,'https://wordpressdemo.subscriptionflow.com/?p=2338',0,'revision','',0),(2339,1,'2023-01-10 08:39:36','2023-01-10 08:39:36','<style>/*! elementor - v3.9.0 - 06-12-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>Right Membership for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n Basic\n <h3>Basic</h3>\n <section>\n Unlimited Calls \n </section>\n <section>\n Free Hosting \n </section>\n <section>\n 500 MB of Storage Space \n </section>\n <section>\n 24/7 Support \n </section>\n 67.99\n € \n 59\n 99\n <a >\n Choose Plan\n </a>\n Save \n Standard\n <h3>Standard</h3>\n <section>\n Unlimited Calls \n </section>\n <section>\n Free Hosting \n </section>\n <section>\n 500 MB of Storage Space \n </section>\n <section>\n 24/7 Support \n </section>\n € \n 249\n 99\n <a >\n Choose Plan\n </a>\n Premium\n <h3>Premium</h3>\n <section>\n Unlimited Calls \n </section>\n <section>\n Free Hosting \n </section>\n <section>\n 500 MB of Storage Space \n </section>\n <section>\n 24/7 Support \n </section>\n € \n 99\n 99\n <a >\n Choose Plan\n </a>','Membership','','inherit','closed','closed','','2318-revision-v1','','','2023-01-10 08:39:36','2023-01-10 08:39:36','',2318,'https://wordpressdemo.subscriptionflow.com/?p=2339',0,'revision','',0),(2340,1,'2023-01-10 08:39:37','2023-01-10 08:39:37','<style>/*! elementor - v3.9.0 - 06-12-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>Right Membership for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n Basic\n <h3>Basic</h3>\n <section>\n Unlimited Calls \n </section>\n <section>\n Free Hosting \n </section>\n <section>\n 500 MB of Storage Space \n </section>\n <section>\n 24/7 Support \n </section>\n 67.99\n € \n 59\n 99\n <a >\n Choose Plan\n </a>\n Save \n Standard\n <h3>Standard</h3>\n <section>\n Unlimited Calls \n </section>\n <section>\n Free Hosting \n </section>\n <section>\n 500 MB of Storage Space \n </section>\n <section>\n 24/7 Support \n </section>\n € \n 249\n 99\n <a >\n Choose Plan\n </a>\n Premium\n <h3>Premium</h3>\n <section>\n Unlimited Calls \n </section>\n <section>\n Free Hosting \n </section>\n <section>\n 500 MB of Storage Space \n </section>\n <section>\n 24/7 Support \n </section>\n € \n 99\n 99\n <a >\n Choose Plan\n </a>','Membership','','inherit','closed','closed','','2318-revision-v1','','','2023-01-10 08:39:37','2023-01-10 08:39:37','',2318,'https://wordpressdemo.subscriptionflow.com/?p=2340',0,'revision','',0),(2342,1,'2023-01-10 10:10:17','2023-01-10 10:10:17','<style>/*! elementor - v3.9.0 - 06-12-2022 */<br />\r\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>\r\n\r\n<img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" sizes=\"(max-width: 863px) 100vw, 863px\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" alt=\"\" width=\"863\" height=\"353\" />\r\n\r\n<strong>Your Request Has Been Received.</strong>\r\n\r\n<style>/*! elementor - v3.9.0 - 06-12-2022 */<br />\r\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>\r\n<h2>We Appreciate Your Interest in Our Product</h2>\r\nName: [custom_query_paramter paramter_type=\'name\']\r\n\r\nEmail: [custom_query_paramter paramter_type=\'email\']\r\n\r\nProduct Name: [custom_query_paramter paramter_type=\'pname\']\r\n\r\nPlan Name: [custom_query_paramter paramter_type=\'pname\']\r\n\r\nPrice: [custom_query_paramter paramter_type=\'price\']\r\n\r\n<strong><em>Stay Connected with SubscriptionFlow!</em></strong>\r\n\r\n<style>/*! elementor - v3.9.0 - 06-12-2022 */<br />\r\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-10 10:10:17','2023-01-10 10:10:17','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2342',0,'revision','',0),(2343,1,'2023-01-10 10:10:17','2023-01-10 10:10:17','<style>/*! elementor - v3.9.0 - 06-12-2022 */<br />\r\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>\r\n\r\n<img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" sizes=\"(max-width: 863px) 100vw, 863px\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" alt=\"\" width=\"863\" height=\"353\" />\r\n\r\n<strong>Your Request Has Been Received.</strong>\r\n\r\n<style>/*! elementor - v3.9.0 - 06-12-2022 */<br />\r\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>\r\n<h2>We Appreciate Your Interest in Our Product</h2>\r\nName: [custom_query_paramter paramter_type=\'name\']\r\n\r\nEmail: [custom_query_paramter paramter_type=\'email\']\r\n\r\nProduct Name: [custom_query_paramter paramter_type=\'pname\']\r\n\r\nPlan Name: [custom_query_paramter paramter_type=\'pname\']\r\n\r\nPrice: [custom_query_paramter paramter_type=\'price\']\r\n\r\n<strong><em>Stay Connected with SubscriptionFlow!</em></strong>\r\n\r\n<style>/*! elementor - v3.9.0 - 06-12-2022 */<br />\r\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-10 10:10:17','2023-01-10 10:10:17','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2343',0,'revision','',0),(2344,1,'2023-01-10 10:10:18','2023-01-10 10:10:18','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Price: [custom_query_paramter paramter_type=\'price\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-10 10:10:18','2023-01-10 10:10:18','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2344',0,'revision','',0),(2345,1,'2023-01-10 10:10:57','2023-01-10 10:10:57','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Price: [custom_query_paramter paramter_type=\'price\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-10 10:10:57','2023-01-10 10:10:57','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2345',0,'revision','',0),(2346,1,'2023-01-10 10:10:57','2023-01-10 10:10:57','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Price: [custom_query_paramter paramter_type=\'price\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-10 10:10:57','2023-01-10 10:10:57','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2346',0,'revision','',0),(2347,1,'2023-01-10 10:10:57','2023-01-10 10:10:57','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Price: [custom_query_paramter paramter_type=\'price\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-10 10:10:57','2023-01-10 10:10:57','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2347',0,'revision','',0),(2349,1,'2023-01-10 10:47:17','2023-01-10 10:47:17','<style>/*! elementor - v3.9.0 - 06-12-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>Right Membership for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n Basic\n <h3>Basic</h3>\n <section>\n Unlimited Calls \n </section>\n <section>\n Free Hosting \n </section>\n <section>\n 500 MB of Storage Space \n </section>\n <section>\n 24/7 Support \n </section>\n 67.99\n € \n 59\n 99\n <a >\n Choose Plan\n </a>\n Save \n Standard\n <h3>Standard</h3>\n <section>\n Unlimited Calls \n </section>\n <section>\n Free Hosting \n </section>\n <section>\n 500 MB of Storage Space \n </section>\n <section>\n 24/7 Support \n </section>\n € \n 249\n 99\n <a >\n Choose Plan\n </a>\n Premium\n <h3>Premium</h3>\n <section>\n Unlimited Calls \n </section>\n <section>\n Free Hosting \n </section>\n <section>\n 500 MB of Storage Space \n </section>\n <section>\n 24/7 Support \n </section>\n € \n 99\n 99\n <a >\n Choose Plan\n </a>','Membership','','inherit','closed','closed','','2318-revision-v1','','','2023-01-10 10:47:17','2023-01-10 10:47:17','',2318,'https://wordpressdemo.subscriptionflow.com/?p=2349',0,'revision','',0),(2350,1,'2023-01-10 10:47:17','2023-01-10 10:47:17','<style>/*! elementor - v3.9.0 - 06-12-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>Right Membership for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n Basic\n <h3>Basic</h3>\n <section>\n Unlimited Calls \n </section>\n <section>\n Free Hosting \n </section>\n <section>\n 500 MB of Storage Space \n </section>\n <section>\n 24/7 Support \n </section>\n 67.99\n € \n 59\n 99\n <a >\n Choose Plan\n </a>\n Save \n Standard\n <h3>Standard</h3>\n <section>\n Unlimited Calls \n </section>\n <section>\n Free Hosting \n </section>\n <section>\n 500 MB of Storage Space \n </section>\n <section>\n 24/7 Support \n </section>\n € \n 249\n 99\n <a >\n Choose Plan\n </a>\n Premium\n <h3>Premium</h3>\n <section>\n Unlimited Calls \n </section>\n <section>\n Free Hosting \n </section>\n <section>\n 500 MB of Storage Space \n </section>\n <section>\n 24/7 Support \n </section>\n € \n 99\n 99\n <a >\n Choose Plan\n </a>','Membership','','inherit','closed','closed','','2318-revision-v1','','','2023-01-10 10:47:17','2023-01-10 10:47:17','',2318,'https://wordpressdemo.subscriptionflow.com/?p=2350',0,'revision','',0),(2351,1,'2023-01-10 10:47:18','2023-01-10 10:47:18','<style>/*! elementor - v3.9.0 - 06-12-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>Right Membership for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n Basic\n <h3>Basic</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Calendar Billing \n </section>\n <section>\n Usage-based (Metered) Billing \n </section>\n <section>\n 24/7 Support \n </section>\n 67.99\n € \n 59\n 99\n <a >\n Choose Plan\n </a>\n Save \n Standard\n <h3>Standard</h3>\n <section>\n Unlimited Calls \n </section>\n <section>\n Free Hosting \n </section>\n <section>\n 500 MB of Storage Space \n </section>\n <section>\n 24/7 Support \n </section>\n € \n 249\n 99\n <a >\n Choose Plan\n </a>\n Premium\n <h3>Premium</h3>\n <section>\n Unlimited Calls \n </section>\n <section>\n Free Hosting \n </section>\n <section>\n 500 MB of Storage Space \n </section>\n <section>\n 24/7 Support \n </section>\n € \n 99\n 99\n <a >\n Choose Plan\n </a>','Membership','','inherit','closed','closed','','2318-revision-v1','','','2023-01-10 10:47:18','2023-01-10 10:47:18','',2318,'https://wordpressdemo.subscriptionflow.com/?p=2351',0,'revision','',0),(2352,1,'2023-01-10 10:47:30','2023-01-10 10:47:30','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Price: [custom_query_paramter paramter_type=\'price\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-10 10:47:30','2023-01-10 10:47:30','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2352',0,'revision','',0),(2353,1,'2023-01-10 10:47:30','2023-01-10 10:47:30','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Price: [custom_query_paramter paramter_type=\'price\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-10 10:47:30','2023-01-10 10:47:30','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2353',0,'revision','',0),(2354,1,'2023-01-10 10:47:31','2023-01-10 10:47:31','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Price: [custom_query_paramter paramter_type=\'price\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-10 10:47:31','2023-01-10 10:47:31','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2354',0,'revision','',0),(2355,1,'2023-01-10 10:48:05','2023-01-10 10:48:05','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Price: [custom_query_paramter paramter_type=\'price\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-10 10:48:05','2023-01-10 10:48:05','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2355',0,'revision','',0),(2356,1,'2023-01-10 10:48:05','2023-01-10 10:48:05','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Price: [custom_query_paramter paramter_type=\'price\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-10 10:48:05','2023-01-10 10:48:05','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2356',0,'revision','',0),(2357,1,'2023-01-10 10:48:05','2023-01-10 10:48:05','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Price: [custom_query_paramter paramter_type=\'price\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-10 10:48:05','2023-01-10 10:48:05','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2357',0,'revision','',0),(2358,1,'2023-01-10 10:48:10','2023-01-10 10:48:10','<style>/*! elementor - v3.9.0 - 06-12-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>Right Membership for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n Basic\n <h3>Basic</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Calendar Billing \n </section>\n <section>\n Usage-based (Metered) Billing \n </section>\n <section>\n 24/7 Support \n </section>\n 67.99\n € \n 59\n 99\n <a >\n Choose Plan\n </a>\n Save \n Standard\n <h3>Standard</h3>\n <section>\n Unlimited Calls \n </section>\n <section>\n Free Hosting \n </section>\n <section>\n 500 MB of Storage Space \n </section>\n <section>\n 24/7 Support \n </section>\n € \n 249\n 99\n <a >\n Choose Plan\n </a>\n Premium\n <h3>Premium</h3>\n <section>\n Unlimited Calls \n </section>\n <section>\n Free Hosting \n </section>\n <section>\n 500 MB of Storage Space \n </section>\n <section>\n 24/7 Support \n </section>\n € \n 99\n 99\n <a >\n Choose Plan\n </a>','Membership','','inherit','closed','closed','','2318-revision-v1','','','2023-01-10 10:48:10','2023-01-10 10:48:10','',2318,'https://wordpressdemo.subscriptionflow.com/?p=2358',0,'revision','',0),(2359,1,'2023-01-10 10:48:10','2023-01-10 10:48:10','<style>/*! elementor - v3.9.0 - 06-12-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>Right Membership for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n Basic\n <h3>Basic</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Calendar Billing \n </section>\n <section>\n Usage-based (Metered) Billing \n </section>\n <section>\n 24/7 Support \n </section>\n 67.99\n € \n 59\n 99\n <a >\n Choose Plan\n </a>\n Save \n Standard\n <h3>Standard</h3>\n <section>\n Unlimited Calls \n </section>\n <section>\n Free Hosting \n </section>\n <section>\n 500 MB of Storage Space \n </section>\n <section>\n 24/7 Support \n </section>\n € \n 249\n 99\n <a >\n Choose Plan\n </a>\n Premium\n <h3>Premium</h3>\n <section>\n Unlimited Calls \n </section>\n <section>\n Free Hosting \n </section>\n <section>\n 500 MB of Storage Space \n </section>\n <section>\n 24/7 Support \n </section>\n € \n 99\n 99\n <a >\n Choose Plan\n </a>','Membership','','inherit','closed','closed','','2318-revision-v1','','','2023-01-10 10:48:10','2023-01-10 10:48:10','',2318,'https://wordpressdemo.subscriptionflow.com/?p=2359',0,'revision','',0),(2360,1,'2023-01-10 10:48:10','2023-01-10 10:48:10','<style>/*! elementor - v3.9.0 - 06-12-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>Right Membership for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n Basic\n <h3>Basic</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Calendar Billing \n </section>\n <section>\n Usage-based (Metered) Billing \n </section>\n <section>\n 24/7 Support \n </section>\n 67.99\n € \n 59\n 99\n <a >\n Choose Plan\n </a>\n Save \n Standard\n <h3>Standard</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n € \n 249\n 99\n <a >\n Choose Plan\n </a>\n Premium\n <h3>Premium</h3>\n <section>\n Unlimited Calls \n </section>\n <section>\n Free Hosting \n </section>\n <section>\n 500 MB of Storage Space \n </section>\n <section>\n 24/7 Support \n </section>\n € \n 99\n 99\n <a >\n Choose Plan\n </a>','Membership','','inherit','closed','closed','','2318-revision-v1','','','2023-01-10 10:48:10','2023-01-10 10:48:10','',2318,'https://wordpressdemo.subscriptionflow.com/?p=2360',0,'revision','',0),(2361,1,'2023-01-10 10:49:04','2023-01-10 10:49:04','<style>/*! elementor - v3.9.0 - 06-12-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>Right Membership for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n Basic\n <h3>Basic</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Calendar Billing \n </section>\n <section>\n Usage-based (Metered) Billing \n </section>\n <section>\n 24/7 Support \n </section>\n 67.99\n € \n 59\n 99\n <a >\n Choose Plan\n </a>\n Save \n Standard\n <h3>Standard</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n € \n 249\n 99\n <a >\n Choose Plan\n </a>\n Premium\n <h3>Premium</h3>\n <section>\n Unlimited Calls \n </section>\n <section>\n Free Hosting \n </section>\n <section>\n 500 MB of Storage Space \n </section>\n <section>\n 24/7 Support \n </section>\n € \n 99\n 99\n <a >\n Choose Plan\n </a>','Membership','','inherit','closed','closed','','2318-revision-v1','','','2023-01-10 10:49:04','2023-01-10 10:49:04','',2318,'https://wordpressdemo.subscriptionflow.com/?p=2361',0,'revision','',0),(2362,1,'2023-01-10 10:49:04','2023-01-10 10:49:04','<style>/*! elementor - v3.9.0 - 06-12-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>Right Membership for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n Basic\n <h3>Basic</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Calendar Billing \n </section>\n <section>\n Usage-based (Metered) Billing \n </section>\n <section>\n 24/7 Support \n </section>\n 67.99\n € \n 59\n 99\n <a >\n Choose Plan\n </a>\n Save \n Standard\n <h3>Standard</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n € \n 249\n 99\n <a >\n Choose Plan\n </a>\n Premium\n <h3>Premium</h3>\n <section>\n Unlimited Calls \n </section>\n <section>\n Free Hosting \n </section>\n <section>\n 500 MB of Storage Space \n </section>\n <section>\n 24/7 Support \n </section>\n € \n 99\n 99\n <a >\n Choose Plan\n </a>','Membership','','inherit','closed','closed','','2318-revision-v1','','','2023-01-10 10:49:04','2023-01-10 10:49:04','',2318,'https://wordpressdemo.subscriptionflow.com/?p=2362',0,'revision','',0),(2363,1,'2023-01-10 10:49:04','2023-01-10 10:49:04','<style>/*! elementor - v3.9.0 - 06-12-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>Right Membership for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n Basic\n <h3>Basic</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Calendar Billing \n </section>\n <section>\n Usage-based (Metered) Billing \n </section>\n <section>\n 24/7 Support \n </section>\n 67.99\n € \n 59\n 99\n <a >\n Choose Plan\n </a>\n Save \n Standard\n <h3>Standard</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n € \n 249\n 99\n <a >\n Choose Plan\n </a>\n Premium\n <h3>Premium</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Calendar Billing \n </section>\n <section>\n Usage-based (Metered) Billing \n </section>\n € \n 99\n 99\n <a >\n Choose Plan\n </a>','Membership','','inherit','closed','closed','','2318-revision-v1','','','2023-01-10 10:49:04','2023-01-10 10:49:04','',2318,'https://wordpressdemo.subscriptionflow.com/?p=2363',0,'revision','',0),(2364,1,'2023-01-10 10:50:50','2023-01-10 10:50:50','<style>/*! elementor - v3.9.0 - 06-12-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>Subscription Management Software</h2> \n <p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.</p> \n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/plans/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>Magazine</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>eCommerce</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/shop/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>Membership</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 10:50:50','2023-01-10 10:50:50','',18,'https://wordpressdemo.subscriptionflow.com/?p=2364',0,'revision','',0),(2365,1,'2023-01-10 10:50:50','2023-01-10 10:50:50','<style>/*! elementor - v3.9.0 - 06-12-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>Subscription Management Software</h2> \n <p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.</p> \n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/plans/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>Magazine</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>eCommerce</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/shop/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>Membership</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 10:50:50','2023-01-10 10:50:50','',18,'https://wordpressdemo.subscriptionflow.com/?p=2365',0,'revision','',0),(2366,1,'2023-01-10 10:50:50','2023-01-10 10:50:50','<style>/*! elementor - v3.9.0 - 06-12-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>Subscription Management Software</h2> \n <p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.</p> \n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/plans/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>Magazine</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>eCommerce</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/shop/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>Membership</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/membership/\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 10:50:50','2023-01-10 10:50:50','',18,'https://wordpressdemo.subscriptionflow.com/?p=2366',0,'revision','',0),(2367,1,'2023-01-10 10:50:59','2023-01-10 10:50:59','<style>/*! elementor - v3.9.0 - 06-12-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>Subscription Management Software</h2> \n <p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.</p> \n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/plans/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>Magazine</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>eCommerce</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/shop/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>Membership</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/membership/\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 10:50:59','2023-01-10 10:50:59','',18,'https://wordpressdemo.subscriptionflow.com/?p=2367',0,'revision','',0),(2368,1,'2023-01-10 10:50:59','2023-01-10 10:50:59','<style>/*! elementor - v3.9.0 - 06-12-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>Subscription Management Software</h2> \n <p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.</p> \n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/plans/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>Magazine</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>eCommerce</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/shop/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>Membership</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/membership/\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 10:50:59','2023-01-10 10:50:59','',18,'https://wordpressdemo.subscriptionflow.com/?p=2368',0,'revision','',0),(2369,1,'2023-01-10 10:50:59','2023-01-10 10:50:59','<style>/*! elementor - v3.9.0 - 06-12-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>Subscription Management Software</h2> \n <p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.</p> \n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/plans/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>Magazine</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>eCommerce</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/shop/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>Membership</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/membership/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 10:50:59','2023-01-10 10:50:59','',18,'https://wordpressdemo.subscriptionflow.com/?p=2369',0,'revision','',0),(2370,1,'2023-12-01 10:42:30','2023-01-10 10:54:06',' ','','','publish','closed','closed','','2370','','','2023-12-01 10:42:30','2023-12-01 10:42:30','',0,'https://wordpressdemo.subscriptionflow.com/?p=2370',1,'nav_menu_item','',0),(2372,1,'2023-01-10 10:56:13','2023-01-10 10:56:13','<picture>\n <img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/SF-logo.png\" alt=\"\">\n <a rel=\"home\" href=\"https://wordpressdemo.subscriptionflow.com/\"></a>\n </picture>\n <a rel=\"home\" href=\"https://wordpressdemo.subscriptionflow.com/\"></a>\n <nav data-trigger=\"hover\"><ul id=\"menu-1-53eac1f\"><li><a href=\"https://wordpressdemo.subscriptionflow.com/\">Home</a></li>\n</ul></nav><nav><ul id=\"mobile-menu-2-53eac1f\"><li><a href=\"https://wordpressdemo.subscriptionflow.com/\">Home</a></li>\n</ul></nav> \n <a data-text=\"Go\" href=\"https://wordpressdemo.subscriptionflow.com/login/\" target=\"_blank\" rel=\"noopener\">\n Login\n </a>','Woo Shop V1 Header','','inherit','closed','closed','','337-revision-v1','','','2023-01-10 10:56:13','2023-01-10 10:56:13','',337,'https://wordpressdemo.subscriptionflow.com/?p=2372',0,'revision','',0),(2373,1,'2023-01-10 10:57:17','2023-01-10 10:57:17','<picture>\n <img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/SF-logo.png\" alt=\"\">\n <a rel=\"home\" href=\"https://wordpressdemo.subscriptionflow.com/\"></a>\n </picture>\n <a rel=\"home\" href=\"https://wordpressdemo.subscriptionflow.com/\"></a>\n <nav data-trigger=\"hover\"><ul id=\"menu-1-53eac1f\"><li><a href=\"https://wordpressdemo.subscriptionflow.com/\">Home</a></li>\n</ul></nav><nav><ul id=\"mobile-menu-2-53eac1f\"><li><a href=\"https://wordpressdemo.subscriptionflow.com/\">Home</a></li>\n</ul></nav> \n <a data-text=\"Go\" href=\"https://wordpressdemo.subscriptionflow.com/login/\" target=\"_blank\" rel=\"noopener\">\n Login\n </a>','Woo Shop V1 Header','','inherit','closed','closed','','337-revision-v1','','','2023-01-10 10:57:17','2023-01-10 10:57:17','',337,'https://wordpressdemo.subscriptionflow.com/?p=2373',0,'revision','',0),(2374,1,'2023-01-10 10:57:27','2023-01-10 10:57:27','<picture>\n <img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/SF-logo.png\" alt=\"\">\n <a rel=\"home\" href=\"https://wordpressdemo.subscriptionflow.com/\"></a>\n </picture>\n <a rel=\"home\" href=\"https://wordpressdemo.subscriptionflow.com/\"></a>\n <nav data-trigger=\"hover\"><ul id=\"menu-1-53eac1f\"><li><a href=\"https://wordpressdemo.subscriptionflow.com/\">Home</a></li>\n</ul></nav><nav><ul id=\"mobile-menu-2-53eac1f\"><li><a href=\"https://wordpressdemo.subscriptionflow.com/\">Home</a></li>\n</ul></nav> \n <a data-text=\"Go\" href=\"https://wordpressdemo.subscriptionflow.com/login/\" target=\"_blank\" rel=\"noopener\">\n Login\n </a>','Woo Shop V1 Header','','inherit','closed','closed','','337-revision-v1','','','2023-01-10 10:57:27','2023-01-10 10:57:27','',337,'https://wordpressdemo.subscriptionflow.com/?p=2374',0,'revision','',0),(2375,1,'2023-01-10 10:58:42','2023-01-10 10:58:42','<picture>\n <img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/SF-logo.png\" alt=\"\">\n <a rel=\"home\" href=\"https://wordpressdemo.subscriptionflow.com/\"></a>\n </picture>\n <a rel=\"home\" href=\"https://wordpressdemo.subscriptionflow.com/\"></a>\n <nav data-trigger=\"hover\"><ul id=\"menu-1-53eac1f\"><li><a href=\"https://wordpressdemo.subscriptionflow.com/\">Home</a></li>\n</ul></nav><nav><ul id=\"mobile-menu-2-53eac1f\"><li><a href=\"https://wordpressdemo.subscriptionflow.com/\">Home</a></li>\n</ul></nav> \n <a data-text=\"Go\" href=\"https://wordpressdemo.subscriptionflow.com/login/\" target=\"_blank\" rel=\"noopener\">\n Login\n </a>','Woo Shop V1 Header','','inherit','closed','closed','','337-revision-v1','','','2023-01-10 10:58:42','2023-01-10 10:58:42','',337,'https://wordpressdemo.subscriptionflow.com/?p=2375',0,'revision','',0),(2376,1,'2023-01-10 10:59:43','2023-01-10 10:59:43','<picture>\n <img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/SF-logo.png\" alt=\"\">\n <a rel=\"home\" href=\"https://wordpressdemo.subscriptionflow.com/\"></a>\n </picture>\n <a rel=\"home\" href=\"https://wordpressdemo.subscriptionflow.com/\"></a>\n <nav data-trigger=\"hover\"><ul id=\"menu-1-53eac1f\"><li><a href=\"https://wordpressdemo.subscriptionflow.com/\">Home</a></li>\n</ul></nav><nav><ul id=\"mobile-menu-2-53eac1f\"><li><a href=\"https://wordpressdemo.subscriptionflow.com/\">Home</a></li>\n</ul></nav> \n <a data-text=\"Go\" href=\"https://wordpressdemo.subscriptionflow.com/login/\" target=\"_blank\" rel=\"noopener\">\n Login\n </a>','Woo Shop V1 Header','','inherit','closed','closed','','337-revision-v1','','','2023-01-10 10:59:43','2023-01-10 10:59:43','',337,'https://wordpressdemo.subscriptionflow.com/?p=2376',0,'revision','',0),(2377,1,'2023-01-10 11:00:02','2023-01-10 11:00:02','<picture>\n <img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/SF-logo.png\" alt=\"\">\n <a rel=\"home\" href=\"https://wordpressdemo.subscriptionflow.com/\"></a>\n </picture>\n <a rel=\"home\" href=\"https://wordpressdemo.subscriptionflow.com/\"></a>\n <nav data-trigger=\"hover\"><ul id=\"menu-1-53eac1f\"><li><a href=\"https://wordpressdemo.subscriptionflow.com/\">Home</a></li>\n</ul></nav><nav><ul id=\"mobile-menu-2-53eac1f\"><li><a href=\"https://wordpressdemo.subscriptionflow.com/\">Home</a></li>\n</ul></nav> \n <a data-text=\"Go\" href=\"https://wordpressdemo.subscriptionflow.com/login/\" target=\"_blank\" rel=\"noopener\">\n Login\n </a>','Woo Shop V1 Header','','inherit','closed','closed','','337-revision-v1','','','2023-01-10 11:00:02','2023-01-10 11:00:02','',337,'https://wordpressdemo.subscriptionflow.com/?p=2377',0,'revision','',0),(2378,1,'2023-01-10 11:00:44','2023-01-10 11:00:44','<style>/*! elementor - v3.9.0 - 06-12-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: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>','Woo Shop V1 Footer','','inherit','closed','closed','','340-revision-v1','','','2023-01-10 11:00:44','2023-01-10 11:00:44','',340,'https://wordpressdemo.subscriptionflow.com/?p=2378',0,'revision','',0),(2379,1,'2023-01-10 11:01:09','2023-01-10 11:01:09','<p>SubscriptionFlow Demo</p> \n <style>/*! elementor - v3.9.0 - 06-12-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: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>','Woo Shop V1 Footer','','inherit','closed','closed','','340-revision-v1','','','2023-01-10 11:01:09','2023-01-10 11:01:09','',340,'https://wordpressdemo.subscriptionflow.com/?p=2379',0,'revision','',0),(2380,1,'2023-01-10 11:07:40','2023-01-10 11:07:40','<style>/*! elementor - v3.9.0 - 06-12-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>Right Membership for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n Basic\n <h3>Basic</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Calendar Billing \n </section>\n <section>\n Usage-based (Metered) Billing \n </section>\n <section>\n 24/7 Support \n </section>\n 67.99\n € \n 59\n 99\n <a >\n Choose Plan\n </a>\n Save \n Standard\n <h3>Standard</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n € \n 249\n 99\n <a >\n Choose Plan\n </a>\n Premium\n <h3>Premium</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Calendar Billing \n </section>\n <section>\n Usage-based (Metered) Billing \n </section>\n € \n 99\n 99\n <a >\n Choose Plan\n </a>','Membership','','inherit','closed','closed','','2318-revision-v1','','','2023-01-10 11:07:40','2023-01-10 11:07:40','',2318,'https://wordpressdemo.subscriptionflow.com/?p=2380',0,'revision','',0),(2381,1,'2023-01-10 11:07:40','2023-01-10 11:07:40','<style>/*! elementor - v3.9.0 - 06-12-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>Right Membership for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n Basic\n <h3>Basic</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Calendar Billing \n </section>\n <section>\n Usage-based (Metered) Billing \n </section>\n <section>\n 24/7 Support \n </section>\n 67.99\n € \n 59\n 99\n <a >\n Choose Plan\n </a>\n Save \n Standard\n <h3>Standard</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n € \n 249\n 99\n <a >\n Choose Plan\n </a>\n Premium\n <h3>Premium</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Calendar Billing \n </section>\n <section>\n Usage-based (Metered) Billing \n </section>\n € \n 99\n 99\n <a >\n Choose Plan\n </a>','Membership','','inherit','closed','closed','','2318-revision-v1','','','2023-01-10 11:07:40','2023-01-10 11:07:40','',2318,'https://wordpressdemo.subscriptionflow.com/?p=2381',0,'revision','',0),(2382,1,'2023-01-10 11:07:40','2023-01-10 11:07:40','<style>/*! elementor - v3.9.0 - 06-12-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>Right Membership for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n Basic\n <h3>Basic</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Calendar Billing \n </section>\n <section>\n Usage-based (Metered) Billing \n </section>\n <section>\n 24/7 Support \n </section>\n 67.99\n € \n 59\n 99\n <a >\n Choose Plan\n </a>\n Save \n Standard\n <h3>Standard</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n € \n 249\n 99\n <a >\n Choose Plan\n </a>\n Premium\n <h3>Premium</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Calendar Billing \n </section>\n <section>\n Usage-based (Metered) Billing \n </section>\n € \n 99\n 99\n <a >\n Choose Plan\n </a>','Membership','','inherit','closed','closed','','2318-revision-v1','','','2023-01-10 11:07:40','2023-01-10 11:07:40','',2318,'https://wordpressdemo.subscriptionflow.com/?p=2382',0,'revision','',0),(2383,1,'2023-01-10 11:11:33','2023-01-10 11:11:33','<style>/*! elementor - v3.9.0 - 06-12-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>Right Membership for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n Basic\n <h3>Basic</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Calendar Billing \n </section>\n <section>\n Usage-based (Metered) Billing \n </section>\n <section>\n 24/7 Support \n </section>\n 67.99\n € \n 59\n 99\n <a >\n Choose Plan\n </a>\n Save \n Standard\n <h3>Standard</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n € \n 249\n 99\n <a >\n Choose Plan\n </a>\n Premium\n <h3>Premium</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Calendar Billing \n </section>\n <section>\n Usage-based (Metered) Billing \n </section>\n € \n 99\n 99\n <a >\n Choose Plan\n </a>','Membership','','inherit','closed','closed','','2318-revision-v1','','','2023-01-10 11:11:33','2023-01-10 11:11:33','',2318,'https://wordpressdemo.subscriptionflow.com/?p=2383',0,'revision','',0),(2384,1,'2023-01-10 11:11:33','2023-01-10 11:11:33','<style>/*! elementor - v3.9.0 - 06-12-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>Right Membership for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n Basic\n <h3>Basic</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Calendar Billing \n </section>\n <section>\n Usage-based (Metered) Billing \n </section>\n <section>\n 24/7 Support \n </section>\n 67.99\n € \n 59\n 99\n <a >\n Choose Plan\n </a>\n Save \n Standard\n <h3>Standard</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n € \n 249\n 99\n <a >\n Choose Plan\n </a>\n Premium\n <h3>Premium</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Calendar Billing \n </section>\n <section>\n Usage-based (Metered) Billing \n </section>\n € \n 99\n 99\n <a >\n Choose Plan\n </a>','Membership','','inherit','closed','closed','','2318-revision-v1','','','2023-01-10 11:11:33','2023-01-10 11:11:33','',2318,'https://wordpressdemo.subscriptionflow.com/?p=2384',0,'revision','',0),(2385,1,'2023-01-10 11:11:33','2023-01-10 11:11:33','<style>/*! elementor - v3.9.0 - 06-12-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>Right Membership for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n Basic\n <h3>Basic</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Calendar Billing \n </section>\n <section>\n Usage-based (Metered) Billing \n </section>\n <section>\n 24/7 Support \n </section>\n 67.99\n € \n 59\n 99\n <a >\n Choose Plan\n </a>\n Save \n Standard\n <h3>Standard</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n € \n 249\n 99\n <a >\n Choose Plan\n </a>\n Premium\n <h3>Premium</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Calendar Billing \n </section>\n <section>\n Usage-based (Metered) Billing \n </section>\n € \n 99\n 99\n <a >\n Choose Plan\n </a>','Membership','','inherit','closed','closed','','2318-revision-v1','','','2023-01-10 11:11:33','2023-01-10 11:11:33','',2318,'https://wordpressdemo.subscriptionflow.com/?p=2385',0,'revision','',0),(2386,1,'2023-01-10 11:12:05','2023-01-10 11:12:05','<style>/*! elementor - v3.9.0 - 06-12-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>Right Membership for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n Basic\n <h3>Basic</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Calendar Billing \n </section>\n <section>\n Usage-based (Metered) Billing \n </section>\n <section>\n 24/7 Support \n </section>\n 67.99\n € \n 59\n 99\n <a >\n Choose Plan\n </a>\n Save \n Standard\n <h3>Standard</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n € \n 249\n 99\n <a >\n Choose Plan\n </a>\n Premium\n <h3>Premium</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Calendar Billing \n </section>\n <section>\n Usage-based (Metered) Billing \n </section>\n € \n 99\n 99\n <a >\n Choose Plan\n </a>','Membership','','inherit','closed','closed','','2318-revision-v1','','','2023-01-10 11:12:05','2023-01-10 11:12:05','',2318,'https://wordpressdemo.subscriptionflow.com/?p=2386',0,'revision','',0),(2387,1,'2023-01-10 11:12:05','2023-01-10 11:12:05','<style>/*! elementor - v3.9.0 - 06-12-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>Right Membership for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n Basic\n <h3>Basic</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Calendar Billing \n </section>\n <section>\n Usage-based (Metered) Billing \n </section>\n <section>\n 24/7 Support \n </section>\n 67.99\n € \n 59\n 99\n <a >\n Choose Plan\n </a>\n Save \n Standard\n <h3>Standard</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n € \n 249\n 99\n <a >\n Choose Plan\n </a>\n Premium\n <h3>Premium</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Calendar Billing \n </section>\n <section>\n Usage-based (Metered) Billing \n </section>\n € \n 99\n 99\n <a >\n Choose Plan\n </a>','Membership','','inherit','closed','closed','','2318-revision-v1','','','2023-01-10 11:12:05','2023-01-10 11:12:05','',2318,'https://wordpressdemo.subscriptionflow.com/?p=2387',0,'revision','',0),(2388,1,'2023-01-10 11:12:05','2023-01-10 11:12:05','<style>/*! elementor - v3.9.0 - 06-12-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>Right Membership for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n Basic\n <h3>Basic</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Calendar Billing \n </section>\n <section>\n Usage-based (Metered) Billing \n </section>\n <section>\n 24/7 Support \n </section>\n 67.99\n € \n 59\n 99\n <a >\n Choose Plan\n </a>\n Save \n Standard\n <h3>Standard</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n € \n 249\n 99\n <a >\n Choose Plan\n </a>\n Premium\n <h3>Premium</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Calendar Billing \n </section>\n <section>\n Usage-based (Metered) Billing \n </section>\n € \n 99\n 99\n <a >\n Choose Plan\n </a>','Membership','','inherit','closed','closed','','2318-revision-v1','','','2023-01-10 11:12:05','2023-01-10 11:12:05','',2318,'https://wordpressdemo.subscriptionflow.com/?p=2388',0,'revision','',0),(2389,1,'2023-01-10 11:15:35','2023-01-10 11:15:35','<style>/*! elementor - v3.9.0 - 06-12-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>Right Membership for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n Basic\n <h3>Basic</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Calendar Billing \n </section>\n <section>\n Usage-based (Metered) Billing \n </section>\n <section>\n 24/7 Support \n </section>\n 67.99\n € \n 59\n 99\n <a >\n Choose Plan\n </a>\n Save \n Standard\n <h3>Standard</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n € \n 249\n 99\n <a >\n Choose Plan\n </a>\n Premium\n <h3>Premium</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Calendar Billing \n </section>\n <section>\n Usage-based (Metered) Billing \n </section>\n € \n 99\n 99\n <a >\n Choose Plan\n </a>','Membership','','inherit','closed','closed','','2318-revision-v1','','','2023-01-10 11:15:35','2023-01-10 11:15:35','',2318,'https://wordpressdemo.subscriptionflow.com/?p=2389',0,'revision','',0),(2390,1,'2023-01-10 11:15:35','2023-01-10 11:15:35','<style>/*! elementor - v3.9.0 - 06-12-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>Right Membership for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n Basic\n <h3>Basic</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Calendar Billing \n </section>\n <section>\n Usage-based (Metered) Billing \n </section>\n <section>\n 24/7 Support \n </section>\n 67.99\n € \n 59\n 99\n <a >\n Choose Plan\n </a>\n Save \n Standard\n <h3>Standard</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n € \n 249\n 99\n <a >\n Choose Plan\n </a>\n Premium\n <h3>Premium</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Calendar Billing \n </section>\n <section>\n Usage-based (Metered) Billing \n </section>\n € \n 99\n 99\n <a >\n Choose Plan\n </a>','Membership','','inherit','closed','closed','','2318-revision-v1','','','2023-01-10 11:15:35','2023-01-10 11:15:35','',2318,'https://wordpressdemo.subscriptionflow.com/?p=2390',0,'revision','',0),(2391,1,'2023-01-10 11:15:36','2023-01-10 11:15:36','<style>/*! elementor - v3.9.0 - 06-12-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>Right Membership for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n Basic\n <h3>Basic</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Calendar Billing \n </section>\n <section>\n Usage-based (Metered) Billing \n </section>\n <section>\n 24/7 Support \n </section>\n 67.99\n € \n 59\n 99\n <a >\n Choose Plan\n </a>\n Save \n Standard\n <h3>Standard</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n € \n 249\n 99\n <a >\n Choose Plan\n </a>\n Premium\n <h3>Premium</h3>\n <section>\n Automated Invoicing \n </section>\n <section>\n Offline Invoicing \n </section>\n <section>\n Calendar Billing \n </section>\n <section>\n Usage-based (Metered) Billing \n </section>\n € \n 99\n 99\n <a >\n Choose Plan\n </a>','Membership','','inherit','closed','closed','','2318-revision-v1','','','2023-01-10 11:15:36','2023-01-10 11:15:36','',2318,'https://wordpressdemo.subscriptionflow.com/?p=2391',0,'revision','',0),(2392,1,'2023-01-10 11:17:40','2023-01-10 11:17:40','<strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing','A4 Magazine Mockup','<strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing','publish','open','closed','','discounted-partner-member','','','2023-01-10 11:29:47','2023-01-10 11:29:47','',0,'https://wordpressdemo.subscriptionflow.com/?post_type=product&p=2392',0,'product','',0),(2393,1,'2023-01-10 11:21:55','2023-01-10 11:21:55','<ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":21,"gutter_vr":30,"animation":"zoom","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 2><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/12/ezgif.png\" alt=\"Socks Monthly subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/socks-weekly-subscription/\">Socks Monthly subscription</a></h2>$50.00</article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/TP2225..jpg\" alt=\"Shirt weekly Subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/shirt-weekly-subscription/\">Shirt weekly Subscription</a></h2>$10.00</article></section>','Demo Shop','','publish','closed','closed','','demo-shop','','','2023-02-06 09:54:53','2023-02-06 09:54:53','',0,'https://wordpressdemo.subscriptionflow.com/?page_id=2393',0,'page','',0),(2394,1,'2023-01-10 11:21:55','2023-01-10 11:21:55','','Demo Shop','','inherit','closed','closed','','2393-revision-v1','','','2023-01-10 11:21:55','2023-01-10 11:21:55','',2393,'https://wordpressdemo.subscriptionflow.com/?p=2394',0,'revision','',0),(2395,1,'2023-01-10 11:24:16','2023-01-10 11:24:16','','Demo Shop','','inherit','closed','closed','','2393-revision-v1','','','2023-01-10 11:24:16','2023-01-10 11:24:16','',2393,'https://wordpressdemo.subscriptionflow.com/?p=2395',0,'revision','',0),(2396,1,'2023-01-10 11:24:16','2023-01-10 11:24:16','','Demo Shop','','inherit','closed','closed','','2393-revision-v1','','','2023-01-10 11:24:16','2023-01-10 11:24:16','',2393,'https://wordpressdemo.subscriptionflow.com/?p=2396',0,'revision','',0),(2397,1,'2023-01-10 11:24:16','2023-01-10 11:24:16','<ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":20,"gutter_vr":30,"animation":"default","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 2><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/12/7_ca8724d4-ae51-4375-b0fc-8388b123737d_1024x1024.webp\" alt=\"Socks Monthly subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/socks-weekly-subscription/\">Socks Monthly subscription</a></h2>$50.00</article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/TP2225..jpg\" alt=\"Shirt weekly Subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/shirt-weekly-subscription/\">Shirt weekly Subscription</a></h2>$10.00</article></section>','Demo Shop','','inherit','closed','closed','','2393-revision-v1','','','2023-01-10 11:24:16','2023-01-10 11:24:16','',2393,'https://wordpressdemo.subscriptionflow.com/?p=2397',0,'revision','',0),(2398,1,'2023-01-10 11:24:53','2023-01-10 11:24:53','<ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":20,"gutter_vr":30,"animation":"default","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 2><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/12/7_ca8724d4-ae51-4375-b0fc-8388b123737d_1024x1024.webp\" alt=\"Socks Monthly subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/socks-weekly-subscription/\">Socks Monthly subscription</a></h2>$50.00</article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/TP2225..jpg\" alt=\"Shirt weekly Subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/shirt-weekly-subscription/\">Shirt weekly Subscription</a></h2>$10.00</article></section>','Demo Shop','','inherit','closed','closed','','2393-revision-v1','','','2023-01-10 11:24:53','2023-01-10 11:24:53','',2393,'https://wordpressdemo.subscriptionflow.com/?p=2398',0,'revision','',0),(2399,1,'2023-01-10 11:24:53','2023-01-10 11:24:53','<ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":20,"gutter_vr":30,"animation":"default","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 2><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/12/7_ca8724d4-ae51-4375-b0fc-8388b123737d_1024x1024.webp\" alt=\"Socks Monthly subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/socks-weekly-subscription/\">Socks Monthly subscription</a></h2>$50.00</article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/TP2225..jpg\" alt=\"Shirt weekly Subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/shirt-weekly-subscription/\">Shirt weekly Subscription</a></h2>$10.00</article></section>','Demo Shop','','inherit','closed','closed','','2393-revision-v1','','','2023-01-10 11:24:53','2023-01-10 11:24:53','',2393,'https://wordpressdemo.subscriptionflow.com/?p=2399',0,'revision','',0),(2400,1,'2023-01-10 11:24:53','2023-01-10 11:24:53','<ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":20,"gutter_vr":30,"animation":"default","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 2><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/12/7_ca8724d4-ae51-4375-b0fc-8388b123737d_1024x1024.webp\" alt=\"Socks Monthly subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/socks-weekly-subscription/\">Socks Monthly subscription</a></h2>$50.00</article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/TP2225..jpg\" alt=\"Shirt weekly Subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/shirt-weekly-subscription/\">Shirt weekly Subscription</a></h2>$10.00</article></section>','Demo Shop','','inherit','closed','closed','','2393-revision-v1','','','2023-01-10 11:24:53','2023-01-10 11:24:53','',2393,'https://wordpressdemo.subscriptionflow.com/?p=2400',0,'revision','',0),(2401,1,'2023-01-10 11:25:47','2023-01-10 11:25:47','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Price: [custom_query_paramter paramter_type=\'price\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-10 11:25:47','2023-01-10 11:25:47','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2401',0,'revision','',0),(2402,1,'2023-01-10 11:25:47','2023-01-10 11:25:47','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Price: [custom_query_paramter paramter_type=\'price\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-10 11:25:47','2023-01-10 11:25:47','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2402',0,'revision','',0),(2403,1,'2023-01-10 11:25:47','2023-01-10 11:25:47','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Price: [custom_query_paramter paramter_type=\'price\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-10 11:25:47','2023-01-10 11:25:47','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2403',0,'revision','',0),(2404,1,'2023-01-10 11:26:20','2023-01-10 11:26:20','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Price: [custom_query_paramter paramter_type=\'price\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-10 11:26:20','2023-01-10 11:26:20','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2404',0,'revision','',0),(2405,1,'2023-01-10 11:26:20','2023-01-10 11:26:20','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Price: [custom_query_paramter paramter_type=\'price\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-10 11:26:20','2023-01-10 11:26:20','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2405',0,'revision','',0),(2406,1,'2023-01-10 11:26:20','2023-01-10 11:26:20','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Price: [custom_query_paramter paramter_type=\'price\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-10 11:26:20','2023-01-10 11:26:20','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2406',0,'revision','',0),(2407,1,'2023-01-10 11:26:37','2023-01-10 11:26:37','<ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":20,"gutter_vr":30,"animation":"default","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 2><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/12/7_ca8724d4-ae51-4375-b0fc-8388b123737d_1024x1024.webp\" alt=\"Socks Monthly subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/socks-weekly-subscription/\">Socks Monthly subscription</a></h2>$50.00</article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/TP2225..jpg\" alt=\"Shirt weekly Subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/shirt-weekly-subscription/\">Shirt weekly Subscription</a></h2>$10.00</article></section>','Demo Shop','','inherit','closed','closed','','2393-revision-v1','','','2023-01-10 11:26:37','2023-01-10 11:26:37','',2393,'https://wordpressdemo.subscriptionflow.com/?p=2407',0,'revision','',0),(2408,1,'2023-01-10 11:26:37','2023-01-10 11:26:37','<ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":20,"gutter_vr":30,"animation":"default","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 2><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/12/7_ca8724d4-ae51-4375-b0fc-8388b123737d_1024x1024.webp\" alt=\"Socks Monthly subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/socks-weekly-subscription/\">Socks Monthly subscription</a></h2>$50.00</article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/TP2225..jpg\" alt=\"Shirt weekly Subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/shirt-weekly-subscription/\">Shirt weekly Subscription</a></h2>$10.00</article></section>','Demo Shop','','inherit','closed','closed','','2393-revision-v1','','','2023-01-10 11:26:37','2023-01-10 11:26:37','',2393,'https://wordpressdemo.subscriptionflow.com/?p=2408',0,'revision','',0),(2409,1,'2023-01-10 11:26:37','2023-01-10 11:26:37','<ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":20,"gutter_vr":30,"animation":"default","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 2><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/12/7_ca8724d4-ae51-4375-b0fc-8388b123737d_1024x1024.webp\" alt=\"Socks Monthly subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/socks-weekly-subscription/\">Socks Monthly subscription</a></h2>$50.00</article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/TP2225..jpg\" alt=\"Shirt weekly Subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/shirt-weekly-subscription/\">Shirt weekly Subscription</a></h2>$10.00</article></section>','Demo Shop','','inherit','closed','closed','','2393-revision-v1','','','2023-01-10 11:26:37','2023-01-10 11:26:37','',2393,'https://wordpressdemo.subscriptionflow.com/?p=2409',0,'revision','',0),(2410,1,'2023-01-10 11:26:57','2023-01-10 11:26:57','<ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":20,"gutter_vr":30,"animation":"default","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 2><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/12/7_ca8724d4-ae51-4375-b0fc-8388b123737d_1024x1024.webp\" alt=\"Socks Monthly subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/socks-weekly-subscription/\">Socks Monthly subscription</a></h2>$50.00</article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/TP2225..jpg\" alt=\"Shirt weekly Subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/shirt-weekly-subscription/\">Shirt weekly Subscription</a></h2>$10.00</article></section>','Demo Shop','','inherit','closed','closed','','2393-revision-v1','','','2023-01-10 11:26:57','2023-01-10 11:26:57','',2393,'https://wordpressdemo.subscriptionflow.com/?p=2410',0,'revision','',0),(2411,1,'2023-01-10 11:26:57','2023-01-10 11:26:57','<ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":20,"gutter_vr":30,"animation":"default","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 2><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/12/7_ca8724d4-ae51-4375-b0fc-8388b123737d_1024x1024.webp\" alt=\"Socks Monthly subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/socks-weekly-subscription/\">Socks Monthly subscription</a></h2>$50.00</article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/TP2225..jpg\" alt=\"Shirt weekly Subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/shirt-weekly-subscription/\">Shirt weekly Subscription</a></h2>$10.00</article></section>','Demo Shop','','inherit','closed','closed','','2393-revision-v1','','','2023-01-10 11:26:57','2023-01-10 11:26:57','',2393,'https://wordpressdemo.subscriptionflow.com/?p=2411',0,'revision','',0),(2412,1,'2023-01-10 11:26:57','2023-01-10 11:26:57','<ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":20,"gutter_vr":30,"animation":"default","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 2><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/12/7_ca8724d4-ae51-4375-b0fc-8388b123737d_1024x1024.webp\" alt=\"Socks Monthly subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/socks-weekly-subscription/\">Socks Monthly subscription</a></h2>$50.00</article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/TP2225..jpg\" alt=\"Shirt weekly Subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/shirt-weekly-subscription/\">Shirt weekly Subscription</a></h2>$10.00</article></section>','Demo Shop','','inherit','closed','closed','','2393-revision-v1','','','2023-01-10 11:26:57','2023-01-10 11:26:57','',2393,'https://wordpressdemo.subscriptionflow.com/?p=2412',0,'revision','',0),(2413,1,'2023-01-10 11:27:33','2023-01-10 11:27:33','<style>/*! elementor - v3.9.0 - 06-12-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>Subscription Management Software</h2> \n <p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.</p> \n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/plans/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>Magazine</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>eCommerce</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/shop/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>Membership</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/membership/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 11:27:33','2023-01-10 11:27:33','',18,'https://wordpressdemo.subscriptionflow.com/?p=2413',0,'revision','',0),(2414,1,'2023-01-10 11:27:33','2023-01-10 11:27:33','<style>/*! elementor - v3.9.0 - 06-12-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>Subscription Management Software</h2> \n <p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.</p> \n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/plans/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>Magazine</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>eCommerce</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/shop/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>Membership</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/membership/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 11:27:33','2023-01-10 11:27:33','',18,'https://wordpressdemo.subscriptionflow.com/?p=2414',0,'revision','',0),(2415,1,'2023-01-10 11:27:33','2023-01-10 11:27:33','<style>/*! elementor - v3.9.0 - 06-12-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>Subscription Management Software</h2> \n <p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.</p> \n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/plans/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>Magazine</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>eCommerce</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/demo-shop/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>Membership</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/membership/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 11:27:33','2023-01-10 11:27:33','',18,'https://wordpressdemo.subscriptionflow.com/?p=2415',0,'revision','',0),(2416,1,'2023-01-10 11:27:33','2023-01-10 11:27:33','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Price: [custom_query_paramter paramter_type=\'price\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-10 11:27:33','2023-01-10 11:27:33','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2416',0,'revision','',0),(2417,1,'2023-01-10 11:27:33','2023-01-10 11:27:33','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Price: [custom_query_paramter paramter_type=\'price\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-10 11:27:33','2023-01-10 11:27:33','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2417',0,'revision','',0),(2418,1,'2023-01-10 11:27:33','2023-01-10 11:27:33','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Price: [custom_query_paramter paramter_type=\'price\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-10 11:27:33','2023-01-10 11:27:33','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2418',0,'revision','',0),(2419,1,'2023-01-10 11:28:58','2023-01-10 11:28:58','','a4-magazine-mockup_125540-620','','inherit','open','closed','','a4-magazine-mockup_125540-620','','','2023-01-10 11:28:58','2023-01-10 11:28:58','',2392,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/a4-magazine-mockup_125540-620.jpg',0,'attachment','image/jpeg',0),(2420,1,'2023-01-10 11:30:23','2023-01-10 11:30:23','<style>/*! elementor - v3.9.0 - 06-12-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>Subscription Management Software</h2> \n <p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.</p> \n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/plans/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>Magazine</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>eCommerce</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/demo-shop/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>Membership</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/membership/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 11:30:23','2023-01-10 11:30:23','',18,'https://wordpressdemo.subscriptionflow.com/?p=2420',0,'revision','',0),(2421,1,'2023-01-10 11:30:23','2023-01-10 11:30:23','<style>/*! elementor - v3.9.0 - 06-12-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>Subscription Management Software</h2> \n <p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.</p> \n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/plans/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>Magazine</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"#\">\n Click here \n </a>\n <h2>eCommerce</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/demo-shop/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>Membership</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/membership/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 11:30:23','2023-01-10 11:30:23','',18,'https://wordpressdemo.subscriptionflow.com/?p=2421',0,'revision','',0),(2422,1,'2023-01-10 11:30:23','2023-01-10 11:30:23','<style>/*! elementor - v3.9.0 - 06-12-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>Subscription Management Software</h2> \n <p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.</p> \n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/plans/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>Magazine</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/product/discounted-partner-member/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>eCommerce</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/demo-shop/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>Membership</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/membership/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 11:30:23','2023-01-10 11:30:23','',18,'https://wordpressdemo.subscriptionflow.com/?p=2422',0,'revision','',0),(2423,1,'2023-01-10 11:33:26','2023-01-10 11:33:26','<style>/*! elementor - v3.9.0 - 06-12-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>Subscription Management Software</h2> \n <p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.</p> \n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/plans/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>Magazine</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/product/discounted-partner-member/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>eCommerce</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/demo-shop/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>Membership</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/membership/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 11:33:26','2023-01-10 11:33:26','',18,'https://wordpressdemo.subscriptionflow.com/?p=2423',0,'revision','',0),(2424,1,'2023-01-10 11:33:26','2023-01-10 11:33:26','<style>/*! elementor - v3.9.0 - 06-12-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>Subscription Management Software</h2> \n <p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.</p> \n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/plans/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>Magazine</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/product/discounted-partner-member/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>eCommerce</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/demo-shop/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>Membership</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/membership/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 11:33:26','2023-01-10 11:33:26','',18,'https://wordpressdemo.subscriptionflow.com/?p=2424',0,'revision','',0),(2425,1,'2023-01-10 11:33:26','2023-01-10 11:33:26','<style>/*! elementor - v3.9.0 - 06-12-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>Subscription Management Software</h2> \n <p>Boosting aggressive growth in companies while improving activation, conversion, retention, and account expansion rates with more customer engagement.</p> \n <h2>SaaS </h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/plans/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>Magazine</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/product/discounted-partner-member/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>eCommerce</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/demo-shop/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>\n <h2>Membership</h2>\n <p>Lorem Ipsum is simply dumy text of the printing typesetting industry lorem ipsum.</p> \n <a href=\"https://wordpressdemo.subscriptionflow.com/membership/\" target=\"_blank\" rel=\"noopener\">\n Click here \n </a>','Home','','inherit','closed','closed','','18-revision-v1','','','2023-01-10 11:33:26','2023-01-10 11:33:26','',18,'https://wordpressdemo.subscriptionflow.com/?p=2425',0,'revision','',0),(2426,1,'2023-01-10 11:39:52','2023-01-10 11:39:52','','02','','inherit','open','closed','','02','','','2023-01-10 11:39:52','2023-01-10 11:39:52','',2162,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/02.png',0,'attachment','image/png',0),(2428,1,'2023-01-10 11:43:16','2023-01-10 11:43:16','','03','','inherit','open','closed','','03','','','2023-01-10 11:43:16','2023-01-10 11:43:16','',2162,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/03.png',0,'attachment','image/png',0),(2431,1,'2023-01-10 13:40:05','2023-01-10 13:40:05','','101','','inherit','open','closed','','101','','','2023-01-10 13:40:05','2023-01-10 13:40:05','',2162,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101.png',0,'attachment','image/png',0),(2432,1,'2023-01-10 13:40:33','2023-01-10 13:40:33','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Price: [custom_query_paramter paramter_type=\'price\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-10 13:40:33','2023-01-10 13:40:33','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2432',0,'revision','',0),(2433,1,'2023-01-10 13:40:33','2023-01-10 13:40:33','<style>/*! elementor - v3.9.0 - 06-12-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=\"863\" height=\"353\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93.png 863w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-300x123.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-768x314.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/93-600x245.png 600w\" sizes=\"(max-width: 863px) 100vw, 863px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Price: [custom_query_paramter paramter_type=\'price\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-10 13:40:33','2023-01-10 13:40:33','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2433',0,'revision','',0),(2434,1,'2023-01-10 13:40:34','2023-01-10 13:40:34','<style>/*! elementor - v3.9.0 - 06-12-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=\"960\" height=\"423\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101.png 979w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101-300x132.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101-768x338.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101-600x264.png 600w\" sizes=\"(max-width: 960px) 100vw, 960px\" /> \n <p><strong>Your Request Has Been Received.</strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-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>We Appreciate Your Interest in Our Product</h2> \n <p>Name: [custom_query_paramter paramter_type=\'name\']</p><p>Email: [custom_query_paramter paramter_type=\'email\']</p><p>Product Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Plan Name: [custom_query_paramter paramter_type=\'pname\']</p><p>Price: [custom_query_paramter paramter_type=\'price\']</p><p><strong><em>Stay Connected with SubscriptionFlow!</em></strong></p> \n <style>/*! elementor - v3.9.0 - 06-12-2022 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>','Thank You','','inherit','closed','closed','','2162-revision-v1','','','2023-01-10 13:40:34','2023-01-10 13:40:34','',2162,'https://wordpressdemo.subscriptionflow.com/?p=2434',0,'revision','',0),(2438,1,'2023-01-25 13:10:33','2023-01-25 13:10:33','<strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing','A4 Magazine Mockup','<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing</p>','inherit','closed','closed','','2392-autosave-v1','','','2023-01-25 13:10:33','2023-01-25 13:10:33','',2392,'https://wordpressdemo.subscriptionflow.com/?p=2438',0,'revision','',0),(2441,1,'2023-02-06 09:32:29','2023-02-06 09:32:29','<ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":20,"gutter_vr":30,"animation":"default","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 2><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/12/7_ca8724d4-ae51-4375-b0fc-8388b123737d_1024x1024.webp\" alt=\"Socks Monthly subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/socks-weekly-subscription/\">Socks Monthly subscription</a></h2>$50.00</article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/TP2225..jpg\" alt=\"Shirt weekly Subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/shirt-weekly-subscription/\">Shirt weekly Subscription</a></h2>$10.00</article></section>','Demo Shop','','inherit','closed','closed','','2393-revision-v1','','','2023-02-06 09:32:29','2023-02-06 09:32:29','',2393,'https://wordpressdemo.subscriptionflow.com/?p=2441',0,'revision','',0),(2442,1,'2023-02-06 09:32:29','2023-02-06 09:32:29','<ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":20,"gutter_vr":30,"animation":"default","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 2><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/12/7_ca8724d4-ae51-4375-b0fc-8388b123737d_1024x1024.webp\" alt=\"Socks Monthly subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/socks-weekly-subscription/\">Socks Monthly subscription</a></h2>$50.00</article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/TP2225..jpg\" alt=\"Shirt weekly Subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/shirt-weekly-subscription/\">Shirt weekly Subscription</a></h2>$10.00</article></section>','Demo Shop','','inherit','closed','closed','','2393-revision-v1','','','2023-02-06 09:32:29','2023-02-06 09:32:29','',2393,'https://wordpressdemo.subscriptionflow.com/?p=2442',0,'revision','',0),(2443,1,'2023-02-06 09:32:29','2023-02-06 09:32:29','<ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":21,"gutter_vr":30,"animation":"zoom","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 2><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/12/7_ca8724d4-ae51-4375-b0fc-8388b123737d_1024x1024.webp\" alt=\"Socks Monthly subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/socks-weekly-subscription/\">Socks Monthly subscription</a></h2>$50.00</article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/TP2225..jpg\" alt=\"Shirt weekly Subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/shirt-weekly-subscription/\">Shirt weekly Subscription</a></h2>$10.00</article></section>','Demo Shop','','inherit','closed','closed','','2393-revision-v1','','','2023-02-06 09:32:29','2023-02-06 09:32:29','',2393,'https://wordpressdemo.subscriptionflow.com/?p=2443',0,'revision','',0),(2444,1,'2023-02-06 09:40:42','2023-02-06 09:40:42','','7_ca8724d4-ae51-4375-b0fc-8388b123737d_1024x1024','','inherit','open','closed','','7_ca8724d4-ae51-4375-b0fc-8388b123737d_1024x1024-2','','','2023-02-06 09:40:42','2023-02-06 09:40:42','',2099,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/12/7_ca8724d4-ae51-4375-b0fc-8388b123737d_1024x1024-1.webp',0,'attachment','image/webp',0),(2445,1,'2023-02-06 09:43:34','2023-02-06 09:43:34','','ezgif.com-gif-maker','','inherit','open','closed','','ezgif-com-gif-maker','','','2023-02-06 09:43:34','2023-02-06 09:43:34','',2099,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/12/ezgif.com-gif-maker.jpg',0,'attachment','image/jpeg',0),(2446,1,'2023-02-06 09:49:15','2023-02-06 09:49:15','','ezgif','','inherit','open','closed','','ezgif','','','2023-02-06 09:49:15','2023-02-06 09:49:15','',2099,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/12/ezgif.png',0,'attachment','image/png',0),(2447,1,'2023-02-06 09:53:37','2023-02-06 09:53:37','<ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":21,"gutter_vr":30,"animation":"zoom","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 2><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/12/7_ca8724d4-ae51-4375-b0fc-8388b123737d_1024x1024.webp\" alt=\"Socks Monthly subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/socks-weekly-subscription/\">Socks Monthly subscription</a></h2>$50.00</article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/TP2225..jpg\" alt=\"Shirt weekly Subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/shirt-weekly-subscription/\">Shirt weekly Subscription</a></h2>$10.00</article></section>','Demo Shop','','inherit','closed','closed','','2393-revision-v1','','','2023-02-06 09:53:37','2023-02-06 09:53:37','',2393,'https://wordpressdemo.subscriptionflow.com/?p=2447',0,'revision','',0),(2448,1,'2023-02-06 09:53:37','2023-02-06 09:53:37','<ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":21,"gutter_vr":30,"animation":"zoom","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 2><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/12/7_ca8724d4-ae51-4375-b0fc-8388b123737d_1024x1024.webp\" alt=\"Socks Monthly subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/socks-weekly-subscription/\">Socks Monthly subscription</a></h2>$50.00</article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/TP2225..jpg\" alt=\"Shirt weekly Subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/shirt-weekly-subscription/\">Shirt weekly Subscription</a></h2>$10.00</article></section>','Demo Shop','','inherit','closed','closed','','2393-revision-v1','','','2023-02-06 09:53:37','2023-02-06 09:53:37','',2393,'https://wordpressdemo.subscriptionflow.com/?p=2448',0,'revision','',0),(2449,1,'2023-02-06 09:53:37','2023-02-06 09:53:37','<ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":21,"gutter_vr":30,"animation":"zoom","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 2><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/12/ezgif.png\" alt=\"Socks Monthly subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/socks-weekly-subscription/\">Socks Monthly subscription</a></h2>$50.00</article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/TP2225..jpg\" alt=\"Shirt weekly Subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/shirt-weekly-subscription/\">Shirt weekly Subscription</a></h2>$10.00</article></section>','Demo Shop','','inherit','closed','closed','','2393-revision-v1','','','2023-02-06 09:53:37','2023-02-06 09:53:37','',2393,'https://wordpressdemo.subscriptionflow.com/?p=2449',0,'revision','',0),(2450,1,'2023-02-06 09:54:53','2023-02-06 09:54:53','<ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":21,"gutter_vr":30,"animation":"zoom","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 2><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/12/ezgif.png\" alt=\"Socks Monthly subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/socks-weekly-subscription/\">Socks Monthly subscription</a></h2>$50.00</article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/TP2225..jpg\" alt=\"Shirt weekly Subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/shirt-weekly-subscription/\">Shirt weekly Subscription</a></h2>$10.00</article></section>','Demo Shop','','inherit','closed','closed','','2393-revision-v1','','','2023-02-06 09:54:53','2023-02-06 09:54:53','',2393,'https://wordpressdemo.subscriptionflow.com/?p=2450',0,'revision','',0),(2451,1,'2023-02-06 09:54:53','2023-02-06 09:54:53','<ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":21,"gutter_vr":30,"animation":"zoom","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 2><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/12/ezgif.png\" alt=\"Socks Monthly subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/socks-weekly-subscription/\">Socks Monthly subscription</a></h2>$50.00</article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/TP2225..jpg\" alt=\"Shirt weekly Subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/shirt-weekly-subscription/\">Shirt weekly Subscription</a></h2>$10.00</article></section>','Demo Shop','','inherit','closed','closed','','2393-revision-v1','','','2023-02-06 09:54:53','2023-02-06 09:54:53','',2393,'https://wordpressdemo.subscriptionflow.com/?p=2451',0,'revision','',0),(2452,1,'2023-02-06 09:54:53','2023-02-06 09:54:53','<ul><li>All<em></em></li><li>Uncategorized<em></em></li></ul><section data-settings=\"{"layout":"fitRows","columns_desktop":3,"gutter_hr":21,"gutter_vr":30,"animation":"zoom","animation_duration":0.3,"animation_delay":0.1,"deeplinking":"","filters_linkable":"no","filters_default_filter":"","filters_count":"","filters_hide_empty":"no","filters_animation":"default","filters_animation_duration":0.3,"filters_animation_delay":0.1,"pagination_type":"load-more","pagination_max_pages":1,"lightbox":{"selector":".wpr-grid-image-wrap","iframeMaxWidth":"60%","hash":false,"autoplay":"true","pause":5000,"progressBar":"true","counter":"true","controls":"true","getCaptionFromTitleOrAlt":"true","thumbnail":"","showThumbByDefault":"","share":"","zoom":"true","fullScreen":"true","download":"true"}}\" data-found-posts = 2><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/12/ezgif.png\" alt=\"Socks Monthly subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/socks-weekly-subscription/\">Socks Monthly subscription</a></h2>$50.00</article><article><img src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2022/06/TP2225..jpg\" alt=\"Shirt weekly Subscription\"><h2><a href=\"https://wordpressdemo.subscriptionflow.com/product/shirt-weekly-subscription/\">Shirt weekly Subscription</a></h2>$10.00</article></section>','Demo Shop','','inherit','closed','closed','','2393-revision-v1','','','2023-02-06 09:54:53','2023-02-06 09:54:53','',2393,'https://wordpressdemo.subscriptionflow.com/?p=2452',0,'revision','',0),(2454,1,'2023-02-06 10:14:09','2023-02-06 10:14:09','<iframe src=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/47669555-7ea2-4125-bda7-0a6e6c0919d8/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" height=\"700\" with=\"800\"></iframe>','Saas Business Plan','','publish','closed','closed','','saas-business-plan','','','2023-02-06 10:16:44','2023-02-06 10:16:44','',0,'https://wordpressdemo.subscriptionflow.com/?post_type=elementor_library&p=2454',0,'elementor_library','',0),(2455,1,'2023-02-06 10:16:23','2023-02-06 10:16:23','','Saas Business Plan','','inherit','closed','closed','','2454-revision-v1','','','2023-02-06 10:16:23','2023-02-06 10:16:23','',2454,'https://wordpressdemo.subscriptionflow.com/?p=2455',0,'revision','',0),(2456,1,'2023-02-06 10:16:24','2023-02-06 10:16:24','<iframe src=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/47669555-7ea2-4125-bda7-0a6e6c0919d8/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" height=\"700\" with=\"800\"></iframe>','Saas Business Plan','','inherit','closed','closed','','2454-revision-v1','','','2023-02-06 10:16:24','2023-02-06 10:16:24','',2454,'https://wordpressdemo.subscriptionflow.com/?p=2456',0,'revision','',0),(2457,1,'2023-02-06 10:18:37','2023-02-06 10:18:37','<style>/*! elementor - v3.9.0 - 06-12-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>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/47669555-7ea2-4125-bda7-0a6e6c0919d8/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-02-06 10:18:37','2023-02-06 10:18:37','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2457',0,'revision','',0),(2458,1,'2023-02-06 10:18:37','2023-02-06 10:18:37','<style>/*! elementor - v3.9.0 - 06-12-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>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/47669555-7ea2-4125-bda7-0a6e6c0919d8/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-02-06 10:18:37','2023-02-06 10:18:37','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2458',0,'revision','',0),(2459,1,'2023-02-06 10:18:38','2023-02-06 10:18:38','<style>/*! elementor - v3.10.1 - 17-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><h2>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"#2454\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-02-06 10:18:38','2023-02-06 10:18:38','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2459',0,'revision','',0),(2460,1,'2023-02-06 10:18:55','2023-02-06 10:18:55','<style>/*! elementor - v3.10.1 - 17-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><h2>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"#2454\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-02-06 10:18:55','2023-02-06 10:18:55','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2460',0,'revision','',0),(2461,1,'2023-02-06 10:18:55','2023-02-06 10:18:55','<style>/*! elementor - v3.10.1 - 17-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><h2>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"#2454\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-02-06 10:18:55','2023-02-06 10:18:55','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2461',0,'revision','',0),(2462,1,'2023-02-06 10:18:56','2023-02-06 10:18:56','<style>/*! elementor - v3.10.1 - 17-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><h2>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"#2454\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-02-06 10:18:56','2023-02-06 10:18:56','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2462',0,'revision','',0),(2463,1,'2023-02-06 10:21:40','2023-02-06 10:21:40','<style>/*! elementor - v3.10.1 - 17-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><h2>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"#2454\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-02-06 10:21:40','2023-02-06 10:21:40','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2463',0,'revision','',0),(2464,1,'2023-02-06 10:21:40','2023-02-06 10:21:40','<style>/*! elementor - v3.10.1 - 17-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><h2>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"#2454\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-02-06 10:21:40','2023-02-06 10:21:40','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2464',0,'revision','',0),(2465,1,'2023-02-06 10:21:41','2023-02-06 10:21:41','<style>/*! elementor - v3.10.1 - 17-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><h2>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"#2454\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <a role=\"button\">\n Click here\n </a>','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-02-06 10:21:41','2023-02-06 10:21:41','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2465',0,'revision','',0),(2467,1,'2023-02-06 10:26:08','2023-02-06 10:26:08','<style>/*! elementor - v3.10.1 - 17-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><h2>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"#2454\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <a role=\"button\">\n Click here\n </a>','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-02-06 10:26:08','2023-02-06 10:26:08','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2467',0,'revision','',0),(2468,1,'2023-02-06 10:26:08','2023-02-06 10:26:08','<style>/*! elementor - v3.10.1 - 17-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><h2>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"#2454\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <a role=\"button\">\n Click here\n </a>','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-02-06 10:26:08','2023-02-06 10:26:08','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2468',0,'revision','',0),(2469,1,'2023-02-06 10:26:09','2023-02-06 10:26:09','<style>/*! elementor - v3.10.1 - 17-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><h2>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"#2454\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <a role=\"button\">\n Click here\n </a>','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-02-06 10:26:09','2023-02-06 10:26:09','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2469',0,'revision','',0),(2470,1,'2023-02-06 10:26:32','2023-02-06 10:26:32','<style>/*! elementor - v3.10.1 - 17-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><h2>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"#2454\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <a role=\"button\">\n Click here\n </a>','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-02-06 10:26:32','2023-02-06 10:26:32','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2470',0,'revision','',0),(2471,1,'2023-02-06 10:26:32','2023-02-06 10:26:32','<style>/*! elementor - v3.10.1 - 17-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><h2>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"#2454\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <a role=\"button\">\n Click here\n </a>','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-02-06 10:26:32','2023-02-06 10:26:32','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2471',0,'revision','',0),(2472,1,'2023-02-06 10:26:33','2023-02-06 10:26:33','<style>/*! elementor - v3.10.1 - 17-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><h2>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"#2454\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <a role=\"button\">\n Click here\n </a>','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-02-06 10:26:33','2023-02-06 10:26:33','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2472',0,'revision','',0),(2473,1,'2023-02-06 10:31:34','2023-02-06 10:31:34','<style>/*! elementor - v3.10.1 - 17-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><h2>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"#2454\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <a role=\"button\">\n Click here\n </a>','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-02-06 10:31:34','2023-02-06 10:31:34','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2473',0,'revision','',0),(2474,1,'2023-02-06 10:31:34','2023-02-06 10:31:34','<style>/*! elementor - v3.10.1 - 17-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><h2>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"#2454\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <a role=\"button\">\n Click here\n </a>','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-02-06 10:31:34','2023-02-06 10:31:34','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2474',0,'revision','',0),(2475,1,'2023-02-06 10:31:35','2023-02-06 10:31:35','<style>/*! elementor - v3.10.1 - 17-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><h2>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"#2454\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <a role=\"button\">\n Click here\n </a>','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-02-06 10:31:35','2023-02-06 10:31:35','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2475',0,'revision','',0),(2476,1,'2023-02-06 10:31:40','2023-02-06 10:31:40','<style>/*! elementor - v3.10.1 - 17-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><h2>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"#2454\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <a role=\"button\">\n Click here\n </a>','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-02-06 10:31:40','2023-02-06 10:31:40','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2476',0,'revision','',0),(2477,1,'2023-02-06 10:31:40','2023-02-06 10:31:40','<style>/*! elementor - v3.10.1 - 17-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><h2>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"#2454\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <a role=\"button\">\n Click here\n </a>','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-02-06 10:31:40','2023-02-06 10:31:40','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2477',0,'revision','',0),(2478,1,'2023-02-06 10:31:41','2023-02-06 10:31:41','<style>/*! elementor - v3.10.1 - 17-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><h2>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"#2454\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <a role=\"button\">\n Click here\n </a>','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-02-06 10:31:41','2023-02-06 10:31:41','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2478',0,'revision','',0),(2479,1,'2023-02-06 10:33:33','2023-02-06 10:33:33','<style>/*! elementor - v3.10.1 - 17-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><h2>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"#2454\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <a role=\"button\">\n Click here\n </a>','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-02-06 10:33:33','2023-02-06 10:33:33','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2479',0,'revision','',0),(2480,1,'2023-02-06 10:33:33','2023-02-06 10:33:33','<style>/*! elementor - v3.10.1 - 17-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><h2>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"#2454\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <a role=\"button\">\n Click here\n </a>','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-02-06 10:33:33','2023-02-06 10:33:33','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2480',0,'revision','',0),(2481,1,'2023-02-06 10:33:34','2023-02-06 10:33:34','<style>/*! elementor - v3.10.1 - 17-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><h2>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"#2454\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <a role=\"button\">\n Buy Now\n </a>','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-02-06 10:33:34','2023-02-06 10:33:34','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2481',0,'revision','',0),(2482,1,'2023-02-06 10:34:07','2023-02-06 10:34:07','<style>/*! elementor - v3.10.1 - 17-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><h2>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"#2454\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <a role=\"button\">\n Buy Now\n </a>','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-02-06 10:34:07','2023-02-06 10:34:07','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2482',0,'revision','',0),(2483,1,'2023-02-06 10:34:07','2023-02-06 10:34:07','<style>/*! elementor - v3.10.1 - 17-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><h2>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"#2454\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <a role=\"button\">\n Buy Now\n </a>','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-02-06 10:34:07','2023-02-06 10:34:07','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2483',0,'revision','',0),(2484,1,'2023-02-06 10:34:08','2023-02-06 10:34:08','<style>/*! elementor - v3.10.1 - 17-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><h2>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"#2454\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <a role=\"button\">\n Buy Now\n </a>','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-02-06 10:34:08','2023-02-06 10:34:08','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2484',0,'revision','',0),(2485,1,'2023-02-06 10:34:59','2023-02-06 10:34:59','<style>/*! elementor - v3.10.1 - 17-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><h2>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"#2454\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <a role=\"button\">\n Buy Now\n </a>','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-02-06 10:34:59','2023-02-06 10:34:59','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2485',0,'revision','',0),(2486,1,'2023-02-06 10:34:59','2023-02-06 10:34:59','<style>/*! elementor - v3.10.1 - 17-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><h2>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"#2454\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <a role=\"button\">\n Buy Now\n </a>','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-02-06 10:34:59','2023-02-06 10:34:59','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2486',0,'revision','',0),(2487,1,'2023-02-06 10:35:00','2023-02-06 10:35:00','<style>/*! elementor - v3.10.1 - 17-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><h2>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" role=\"button\" rel=\"noopener\">\n Buy Now\n </a>\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <a role=\"button\">\n Buy Now\n </a>\n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"#2454\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <a role=\"button\">\n Buy Now\n </a>','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-02-06 10:35:00','2023-02-06 10:35:00','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2487',0,'revision','',0),(2488,1,'2023-02-06 10:35:21','2023-02-06 10:35:21','<style>/*! elementor - v3.10.1 - 17-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><h2>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" role=\"button\" rel=\"noopener\">\n Buy Now\n </a>\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <a role=\"button\">\n Buy Now\n </a>\n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"#2454\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <a role=\"button\">\n Buy Now\n </a>','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-02-06 10:35:21','2023-02-06 10:35:21','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2488',0,'revision','',0),(2489,1,'2023-02-06 10:35:21','2023-02-06 10:35:21','<style>/*! elementor - v3.10.1 - 17-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><h2>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" role=\"button\" rel=\"noopener\">\n Buy Now\n </a>\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <a role=\"button\">\n Buy Now\n </a>\n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"#2454\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <a role=\"button\">\n Buy Now\n </a>','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-02-06 10:35:21','2023-02-06 10:35:21','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2489',0,'revision','',0),(2490,1,'2023-02-06 10:35:21','2023-02-06 10:35:21','<style>/*! elementor - v3.10.1 - 17-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><h2>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" role=\"button\" rel=\"noopener\">\n Buy Now\n </a>\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" role=\"button\" rel=\"noopener\">\n Buy Now\n </a>\n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"#2454\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <a role=\"button\">\n Buy Now\n </a>','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-02-06 10:35:21','2023-02-06 10:35:21','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2490',0,'revision','',0),(2491,1,'2023-02-06 10:37:41','2023-02-06 10:37:41','<style>/*! elementor - v3.10.1 - 17-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><h2>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" role=\"button\" rel=\"noopener\">\n Buy Now\n </a>\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" role=\"button\" rel=\"noopener\">\n Buy Now\n </a>\n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"#2454\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <a role=\"button\">\n Buy Now\n </a>','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-02-06 10:37:41','2023-02-06 10:37:41','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2491',0,'revision','',0),(2492,1,'2023-02-06 10:37:41','2023-02-06 10:37:41','<style>/*! elementor - v3.10.1 - 17-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><h2>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" role=\"button\" rel=\"noopener\">\n Buy Now\n </a>\n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" rel=\"noopener\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n Save 44% \n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" role=\"button\" rel=\"noopener\">\n Buy Now\n </a>\n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"#2454\">\n Buy Now\n </a>\n 30 Days Money Back Guarantee\n <a role=\"button\">\n Buy Now\n </a>','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-02-06 10:37:41','2023-02-06 10:37:41','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2492',0,'revision','',0),(2493,1,'2023-02-06 10:37:42','2023-02-06 10:37:42','<style>/*! elementor - v3.10.1 - 17-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><h2>Right Plan for Your Business</h2> \n <p>Lorem ipsum dolor amet, consectetur adipiscing elit. Ut tellus, luctus mattis, pulvinar dapibus.</p> \n <h3>Starter</h3>\n Plan\n $ \n 29\n 99\n /Year\n <section>\n <strong>1 Site License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a href=\"https://demo.subscriptionflow.com/en/hosted-page/subscribe/b277e941-8936-46ff-baaf-87cca1bfe297/product/7e1404d0-0080-45aa-9886-53ac3f619a01\" target=\"_blank\" role=\"button\" rel=\"noopener\">\n Buy Now\n </a>\n <p>30 Days Money Back Guarantee</p> \n <h3>Professional</h3>\n Plan\n $ \n 49\n 99\n /Year\n <section>\n <strong>3 Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n Save 44% \n <a href=\"https://wordpressdemo.subscriptionflow.com/professional-plan/\" target=\"_blank\" role=\"button\" rel=\"noopener\">\n Buy Now\n </a>\n <p>30 Days Money Back Guarantee</p> \n <h3>Business</h3>\n Plan\n $ \n 199\n 99\n /Year\n <section>\n <strong>Unlimited Sites License</strong> \n </section>\n <section>\n 1 Year Support \n </section>\n <section>\n 1 Year Updates \n </section>\n <section>\n All Pro Features \n </section>\n <section>\n 25% Renewal Discount \n </section>\n <a role=\"button\">\n Buy Now\n </a>\n <p>30 Days Money Back Guarantee</p>','Plans','','inherit','closed','closed','','2131-revision-v1','','','2023-02-06 10:37:42','2023-02-06 10:37:42','',2131,'https://wordpressdemo.subscriptionflow.com/?p=2493',0,'revision','',0),(2500,1,'2023-10-19 13:24:48','2023-10-19 13:24:48','<style>/*! elementor - v3.6.4 - 13-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style> \n <style>/*! elementor - v3.6.4 - 13-04-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 Us</h2> \n <h2>Kagon Brand Contact</h2> \n <p>Dwelling and speedily ignorant any steepest. Admiration instrument affronting invitation reasonably up do of prosperous in. Shy saw declared age debating ecstatic man.</p> \n <link rel=\"stylesheet\" href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\"> \n <h3>\n Working Hours \n </h3>\n <p>\n Mon – Fri : 8:30 – 18:00 </p>\n <h3>\n Our Office Address \n </h3>\n <p>\n 5954 Old Cove Heath Rd\nEupora, Mississippi(MS), 39744 </p>\n <h3>\n Office Phone Number \n </h3>\n <p>\n +1 (662) 258-5616 </p>\n <h3>\n Kagan Email \n </h3>\n <p>\n Kaganswimwear@mail.com </p>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wooshop-v1/wp-admin/admin-ajax.php#wpcf7-f1785-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"1785\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4.2\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f1785-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n <input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" /> </label></p>\n<p><label> Your email<br />\n <input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" /> </label></p>\n<p><label> Your message (optional)<br />\n <textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-invalid=\"false\"></textarea> </label></p>\n<p><input type=\"submit\" value=\"Submit\" /></p>\n</form> \n <h2>Please go to plugin Settings and Insert Google Map API Key in order to make Google Maps work, then delete this text manually </h2>','Contact','','inherit','closed','closed','','1160-revision-v1','','','2023-10-19 13:24:48','2023-10-19 13:24:48','',1160,'https://wordpressdemo.subscriptionflow.com/?p=2500',0,'revision','',0),(2501,1,'2023-10-19 13:24:48','2023-10-19 13:24:48','<style>/*! elementor - v3.6.4 - 13-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style> \n <style>/*! elementor - v3.6.4 - 13-04-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 Us</h2> \n <h2>Kagon Brand Contact</h2> \n <p>Dwelling and speedily ignorant any steepest. Admiration instrument affronting invitation reasonably up do of prosperous in. Shy saw declared age debating ecstatic man.</p> \n <link rel=\"stylesheet\" href=\"https://demosites.royal-elementor-addons.com/wooshop-v1/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\"> \n <h3>\n Working Hours \n </h3>\n <p>\n Mon – Fri : 8:30 – 18:00 </p>\n <h3>\n Our Office Address \n </h3>\n <p>\n 5954 Old Cove Heath Rd\nEupora, Mississippi(MS), 39744 </p>\n <h3>\n Office Phone Number \n </h3>\n <p>\n +1 (662) 258-5616 </p>\n <h3>\n Kagan Email \n </h3>\n <p>\n Kaganswimwear@mail.com </p>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wooshop-v1/wp-admin/admin-ajax.php#wpcf7-f1785-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"1785\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4.2\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f1785-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n <input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" /> </label></p>\n<p><label> Your email<br />\n <input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" /> </label></p>\n<p><label> Your message (optional)<br />\n <textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-invalid=\"false\"></textarea> </label></p>\n<p><input type=\"submit\" value=\"Submit\" /></p>\n</form> \n <h2>Please go to plugin Settings and Insert Google Map API Key in order to make Google Maps work, then delete this text manually </h2>','Contact','','inherit','closed','closed','','1160-revision-v1','','','2023-10-19 13:24:48','2023-10-19 13:24:48','',1160,'https://wordpressdemo.subscriptionflow.com/?p=2501',0,'revision','',0),(2502,1,'2023-10-19 13:24:48','2023-10-19 13:24:48','<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f1785-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"1785\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8.1\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f1785-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p><p style=\"display: none !important;\"><label>Δ<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"199\"/></p>\n</form>','Contact','','inherit','closed','closed','','1160-revision-v1','','','2023-10-19 13:24:48','2023-10-19 13:24:48','',1160,'https://wordpressdemo.subscriptionflow.com/?p=2502',0,'revision','',0); INSERT INTO `wp_posts` VALUES (2503,1,'2023-10-19 13:27:53','2023-10-19 13:27:53','<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f1785-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"1785\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8.1\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f1785-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p><p style=\"display: none !important;\"><label>Δ<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"199\"/></p>\n</form>','Contact','','inherit','closed','closed','','1160-revision-v1','','','2023-10-19 13:27:53','2023-10-19 13:27:53','',1160,'https://wordpressdemo.subscriptionflow.com/?p=2503',0,'revision','',0),(2504,1,'2023-10-19 13:27:54','2023-10-19 13:27:54','<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f1785-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"1785\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8.1\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f1785-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" /> </label>\n</p>\n<p><label> Your email<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Your message (optional)<br />\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" name=\"your-message\"></textarea> </label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p><p style=\"display: none !important;\"><label>Δ<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"199\"/></p>\n</form>','Contact','','inherit','closed','closed','','1160-revision-v1','','','2023-10-19 13:27:54','2023-10-19 13:27:54','',1160,'https://wordpressdemo.subscriptionflow.com/?p=2504',0,'revision','',0),(2505,1,'2023-10-19 13:27:54','2023-10-19 13:27:54','<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f1785-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"1785\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8.1\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f1785-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> First Name<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"first-name\" /> </label>\n</p>\n<p><label> Last Name<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"last-name\" /> </label>\n</p>\n<p><label>Email<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Business/Organisation Name<br />\n<input size=\"40\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"business-name\" /> </label>\n</p>\n<p><Label>Phone Number<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"tel\" name=\"Contact-number\" /></label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p><p style=\"display: none !important;\"><label>Δ<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"81\"/></p>\n</form>','Contact','','inherit','closed','closed','','1160-revision-v1','','','2023-10-19 13:27:54','2023-10-19 13:27:54','',1160,'https://wordpressdemo.subscriptionflow.com/?p=2505',0,'revision','',0),(2506,1,'2023-10-19 13:28:36','2023-10-19 13:28:36','<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f1785-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"1785\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8.1\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f1785-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> First Name<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"first-name\" /> </label>\n</p>\n<p><label> Last Name<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"last-name\" /> </label>\n</p>\n<p><label>Email<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Business/Organisation Name<br />\n<input size=\"40\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"business-name\" /> </label>\n</p>\n<p><Label>Phone Number<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"tel\" name=\"Contact-number\" /></label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p><p style=\"display: none !important;\"><label>Δ<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"81\"/></p>\n</form>','Contact','','inherit','closed','closed','','1160-revision-v1','','','2023-10-19 13:28:36','2023-10-19 13:28:36','',1160,'https://wordpressdemo.subscriptionflow.com/?p=2506',0,'revision','',0),(2507,1,'2023-10-19 13:28:36','2023-10-19 13:28:36','<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f1785-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"1785\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8.1\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f1785-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> First Name<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"first-name\" /> </label>\n</p>\n<p><label> Last Name<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"last-name\" /> </label>\n</p>\n<p><label>Email<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Business/Organisation Name<br />\n<input size=\"40\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"business-name\" /> </label>\n</p>\n<p><Label>Phone Number<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"tel\" name=\"Contact-number\" /></label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p><p style=\"display: none !important;\"><label>Δ<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"81\"/></p>\n</form>','Contact','','inherit','closed','closed','','1160-revision-v1','','','2023-10-19 13:28:36','2023-10-19 13:28:36','',1160,'https://wordpressdemo.subscriptionflow.com/?p=2507',0,'revision','',0),(2508,1,'2023-10-19 13:28:36','2023-10-19 13:28:36','<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f1785-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"1785\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8.1\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f1785-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> First Name<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"first-name\" /> </label>\n</p>\n<p><label> Last Name<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"last-name\" /> </label>\n</p>\n<p><label>Email<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" /> </label>\n</p>\n<p><label> Business/Organisation Name<br />\n<input size=\"40\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"business-name\" /> </label>\n</p>\n<p><Label>Phone Number<br />\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"tel\" name=\"Contact-number\" /></label>\n</p>\n<p><input type=\"submit\" value=\"Submit\" />\n</p><p style=\"display: none !important;\"><label>Δ<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"237\"/></p>\n</form>','Contact','','inherit','closed','closed','','1160-revision-v1','','','2023-10-19 13:28:36','2023-10-19 13:28:36','',1160,'https://wordpressdemo.subscriptionflow.com/?p=2508',0,'revision','',0),(2509,1,'2023-10-19 13:52:29','2023-10-19 13:52:29','<style>/*! elementor - v3.16.0 - 17-10-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=\"960\" height=\"423\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101.png 979w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101-300x132.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101-768x338.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101-600x264.png 600w\" sizes=\"(max-width: 960px) 100vw, 960px\" /> \n <p><strong>Your Request Has Been Received.</strong></p>','Demo Thank You','','publish','closed','closed','','thank-you-contact-us','','','2023-10-19 13:54:20','2023-10-19 13:54:20','',0,'https://wordpressdemo.subscriptionflow.com/?page_id=2509',0,'page','',0),(2510,1,'2023-10-19 13:52:29','2023-10-19 13:52:29','','Thank You','','inherit','closed','closed','','2509-revision-v1','','','2023-10-19 13:52:29','2023-10-19 13:52:29','',2509,'https://wordpressdemo.subscriptionflow.com/?p=2510',0,'revision','',0),(2511,1,'2023-10-19 13:53:27','2023-10-19 13:53:27','','Thank You','','inherit','closed','closed','','2509-revision-v1','','','2023-10-19 13:53:27','2023-10-19 13:53:27','',2509,'https://wordpressdemo.subscriptionflow.com/?p=2511',0,'revision','',0),(2512,1,'2023-10-19 13:53:27','2023-10-19 13:53:27','','Thank You','','inherit','closed','closed','','2509-revision-v1','','','2023-10-19 13:53:27','2023-10-19 13:53:27','',2509,'https://wordpressdemo.subscriptionflow.com/?p=2512',0,'revision','',0),(2513,1,'2023-10-19 13:53:27','2023-10-19 13:53:27','<style>/*! elementor - v3.16.0 - 17-10-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=\"960\" height=\"423\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101.png 979w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101-300x132.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101-768x338.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101-600x264.png 600w\" sizes=\"(max-width: 960px) 100vw, 960px\" /> \n <p><strong>Your Request Has Been Received.</strong></p>','Thank You','','inherit','closed','closed','','2509-revision-v1','','','2023-10-19 13:53:27','2023-10-19 13:53:27','',2509,'https://wordpressdemo.subscriptionflow.com/?p=2513',0,'revision','',0),(2514,1,'2023-10-19 13:53:50','2023-10-19 13:53:50','<style>/*! elementor - v3.16.0 - 17-10-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=\"960\" height=\"423\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101.png 979w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101-300x132.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101-768x338.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101-600x264.png 600w\" sizes=\"(max-width: 960px) 100vw, 960px\" /> \n <p><strong>Your Request Has Been Received.</strong></p>','Thank You','','inherit','closed','closed','','2509-revision-v1','','','2023-10-19 13:53:50','2023-10-19 13:53:50','',2509,'https://wordpressdemo.subscriptionflow.com/?p=2514',0,'revision','',0),(2515,1,'2023-10-19 13:53:50','2023-10-19 13:53:50','<style>/*! elementor - v3.16.0 - 17-10-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=\"960\" height=\"423\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101.png 979w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101-300x132.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101-768x338.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101-600x264.png 600w\" sizes=\"(max-width: 960px) 100vw, 960px\" /> \n <p><strong>Your Request Has Been Received.</strong></p>','Thank You','','inherit','closed','closed','','2509-revision-v1','','','2023-10-19 13:53:50','2023-10-19 13:53:50','',2509,'https://wordpressdemo.subscriptionflow.com/?p=2515',0,'revision','',0),(2516,1,'2023-10-19 13:53:50','2023-10-19 13:53:50','<style>/*! elementor - v3.16.0 - 17-10-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=\"960\" height=\"423\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101.png 979w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101-300x132.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101-768x338.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101-600x264.png 600w\" sizes=\"(max-width: 960px) 100vw, 960px\" /> \n <p><strong>Your Request Has Been Received.</strong></p>','Thank You','','inherit','closed','closed','','2509-revision-v1','','','2023-10-19 13:53:50','2023-10-19 13:53:50','',2509,'https://wordpressdemo.subscriptionflow.com/?p=2516',0,'revision','',0),(2517,1,'2023-10-19 13:54:20','2023-10-19 13:54:20','<style>/*! elementor - v3.16.0 - 17-10-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=\"960\" height=\"423\" src=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101.png\" alt=\"\" loading=\"lazy\" srcset=\"https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101.png 979w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101-300x132.png 300w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101-768x338.png 768w, https://wordpressdemo.subscriptionflow.com/wp-content/uploads/2023/01/101-600x264.png 600w\" sizes=\"(max-width: 960px) 100vw, 960px\" /> \n <p><strong>Your Request Has Been Received.</strong></p>','Demo Thank You','','inherit','closed','closed','','2509-revision-v1','','','2023-10-19 13:54:20','2023-10-19 13:54:20','',2509,'https://wordpressdemo.subscriptionflow.com/?p=2517',0,'revision','',0),(2519,1,'2023-10-19 13:56:45','2023-10-19 13:56:45','','New Action','','private','closed','closed','','new-action','','','2023-10-19 13:59:15','2023-10-19 13:59:15','',0,'https://wordpressdemo.subscriptionflow.com/?wpcf7r_action=new-action',1,'wpcf7r_action','',0),(2520,1,'2023-12-01 10:42:30','2023-10-23 06:48:48','','Contact Us','','publish','closed','closed','','2520','','','2023-12-01 10:42:30','2023-12-01 10:42:30','',0,'https://wordpressdemo.subscriptionflow.com/?p=2520',2,'nav_menu_item','',0),(2523,1,'2023-11-21 14:09:55','2023-11-21 14:09:55','','Order – November 21, 2023 @ 02:09 PM','','wc-cancelled','open','closed','wc_order_IO2idBuALiBMO','order-nov-21-2023-0209-pm','','','2023-11-21 17:25:36','2023-11-21 17:25:36','',0,'https://wordpressdemo.subscriptionflow.com/?post_type=shop_order&p=2523',0,'shop_order','',1),(2524,1,'2023-11-21 14:24:18','2023-11-21 14:24:18','','Order – November 21, 2023 @ 02:24 PM','','wc-cancelled','open','closed','wc_order_bEpia5YagTZqg','order-nov-21-2023-0224-pm','','','2023-11-21 17:25:36','2023-11-21 17:25:36','',0,'https://wordpressdemo.subscriptionflow.com/?post_type=shop_order&p=2524',0,'shop_order','',1),(2525,1,'2023-11-22 08:41:11','2023-11-22 08:41:11','','Order – November 22, 2023 @ 08:41 AM','','wc-cancelled','open','closed','wc_order_8U6CmbhzDv0Rh','order-nov-22-2023-0841-am','','','2023-11-22 10:02:38','2023-11-22 10:02:38','',0,'https://wordpressdemo.subscriptionflow.com/?post_type=shop_order&p=2525',0,'shop_order','',1),(2526,1,'2023-11-22 10:40:15','2023-11-22 10:40:15','','Order – November 22, 2023 @ 10:40 AM','','wc-cancelled','open','closed','wc_order_T2La4QrBbn4wE','order-nov-22-2023-1040-am','','','2023-11-22 12:24:17','2023-11-22 12:24:17','',0,'https://wordpressdemo.subscriptionflow.com/?post_type=shop_order&p=2526',0,'shop_order','',1),(2527,1,'2023-11-24 12:45:25','2023-11-24 12:45:25','','Order – November 24, 2023 @ 12:45 PM','Est error natus quia','wc-cancelled','open','closed','wc_order_jEcoXIEneT6Rq','order-nov-24-2023-1245-pm','','','2023-11-24 15:44:08','2023-11-24 15:44:08','',0,'https://wordpressdemo.subscriptionflow.com/?post_type=shop_order&p=2527',0,'shop_order','',1),(2529,1,'2023-11-30 12:36:57','2023-11-30 12:36:57','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"2531\" title=\"Payment Widget\"]','Payment Widget Demo','','publish','closed','closed','','payment-widget-demo','','','2023-12-01 10:10:54','2023-12-01 10:10:54','',0,'https://wordpressdemo.subscriptionflow.com/?page_id=2529',0,'page','',0),(2530,1,'2023-11-30 12:36:57','2023-11-30 12:36:57','','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 12:36:57','2023-11-30 12:36:57','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2530',0,'revision','',0),(2531,1,'2023-11-30 12:49:48','2023-11-30 12:49:48','<label> First Name*\r\n [text* first-name placeholder \"Type your name\"] </label>\r\n\r\n<label> Last Name*\r\n [text* last-name placeholder \"Type your name\"] </label>\r\n\r\n<label> Phone*\r\n [text* phone placeholder \"Type your phone\"] </label>\r\n\r\n<label>Email\r\n [email* email placeholder \"Type your email\"] </label>\r\n\r\n<label> Address*\r\n [text* address placeholder \"Type your address\"] </label>\r\n\r\n<label for=\"country\">\r\n Country* [select* country first_as_label \"Please select\" \"Afghanistan\" \"Albania\" \"Algeria\" \"Andorra\" \"Angola\" \"Antigua & Barbuda\" \"Argentina\" \"Armenia\" \"Australia\" \"Austria\" \"Azerbaijan\" \"Bahamas\" \"Bahrain\" \"Bangladesh\" \"Barbados\" \"Belarus\" \"Belgium\" \"Belize\" \"Benin\" \"Bhutan\" \"Bolivia\" \"Bosnia & Herzegovina\" \"Botswana\" \"Brazil\" \"Brunei\" \"Bulgaria\" \"Burkina Faso\" \"Burundi\" \"Cambodia\" \"Cameroon\" \"Canada\" \"Cape Verde\" \"Central African Republic\" \"Chad\" \"Chile\" \"China\" \"Colombia\" \"Comoros\" \"Congo\" \"Congo Democratic Republic\" \"Costa Rica\" \"Cote d\'Ivoire\" \"Croatia\" \"Cuba\" \"Cyprus\" \"Czech Republic\" \"Denmark\" \"Djibouti\" \"Dominica\" \"Dominican Republic\" \"Ecuador\" \"East Timor\" \"Egypt\" \"El Salvador\" \"Equatorial Guinea\" \"Eritrea\" \"Estonia\" \"Ethiopia\" \"Fiji\" \"Finland\" \"France\" \"Gabon\" \"Gambia\" \"Georgia\" \"Germany\" \"Ghana\" \"Greece\" \"Grenada\" \"Guatemala\" \"Guinea\" \"Guinea-Bissau\" \"Guyana\" \"Haiti\" \"Honduras\" \"Hungary\" \"Iceland\" \"India\" \"Indonesia\" \"Iran\" \"Iraq\" \"Ireland\" \"Israel\" \"Italy\" \"Jamaica\" \"Japan\" \"Jordan\" \"Kazakhstan\" \"Kenya\" \"Kiribati\" \"Korea North\" \"Korea South\" \"Kosovo\" \"Kuwait\" \"Kyrgyzstan\" \"Laos\" \"Latvia\" \"Lebanon\" \"Lesotho\" \"Liberia\" \"Libya\" \"Liechtenstein\" \"Lithuania\" \"Luxembourg\" \"Macedonia\" \"Madagascar\" \"Malawi\" \"Malaysia\" \"Maldives\" \"Mali\" \"Malta\" \"Marshall Islands\" \"Mauritania\" \"Mauritius\" \"Mexico\" \"Micronesia\" \"Moldova\" \"Monaco\" \"Mongolia\" \"Montenegro\" \"Morocco\" \"Mozambique\" \"Myanmar (Burma)\" \"Namibia\" \"Nauru\" \"Nepal\" \"The Netherlands\" \"New Zealand\" \"Nicaragua\" \"Niger\" \"Nigeria\" \"Norway\" \"Oman\" \"Pakistan\" \"Palau\" \"Palestinian State*\" \"Panama\" \"Papua New Guinea\" \"Paraguay\" \"Peru\" \"The Philippines\" \"Poland\" \"Portugal\" \"Qatar\" \"Romania\" \"Russia\" \"Rwanda\" \"St. Kitts & Nevis\" \"St. Lucia\" \"St. Vincent & The Grenadines\" \"Samoa\" \"San Marino\" \"Sao Tome & Principe\" \"Saudi Arabia\" \"Senegal\" \"Serbia\" \"Seychelles\" \"Sierra Leone\" \"Singapore\" \"Slovakia\" \"Slovenia\" \"Solomon Islands\" \"Somalia\" \"South Africa\" \"South Sudan\" \"Spain\" \"Sri Lanka\" \"Sudan\" \"Suriname\" \"Swaziland\" \"Sweden\" \"Switzerland\" \"Syria\" \"Taiwan\" \"Tajikistan\" \"Tanzania\" \"Thailand\" \"Togo\" \"Tonga\" \"Trinidad & Tobago\" \"Tunisia\" \"Turkey\" \"Turkmenistan\" \"Tuvalu\" \"Uganda\" \"Ukraine\" \"United Arab Emirates\" \"United Kingdom\" \"United States of America\" \"Uruguay\" \"Uzbekistan\" \"Vanuatu\" \"Vatican City (Holy See)\" \"Venezuela\" \"Vietnam\" \"Yemen\" \"Zambia\" \"Zimbabwe\"]\r\n</label>\r\n\r\n\r\n<label> City*\r\n [text* city placeholder \"Type your city\"] </label>\r\n\r\n<label for=\"state\">\r\nState* <select class=\"wpcf7-form-control wpcf7-select wpcf7-validates-as-required\" aria-required=\"true\" aria-invalid=\"true\" name=\"state\">\r\n <option value=\"AL\">Alabama</option>\r\n <option value=\"AK\">Alaska</option>\r\n <option value=\"AS\">American Samoa</option>\r\n <option value=\"AZ\">Arizona</option>\r\n <option value=\"AR\">Arkansas</option>\r\n <option value=\"CA\">California</option>\r\n <option value=\"CO\">Colorado</option>\r\n <option value=\"CT\">Connecticut</option>\r\n <option value=\"DE\">Delaware</option>\r\n <option value=\"DC\">District Of Columbia</option>\r\n <option value=\"FM\">Federated States Of Micronesia</option>\r\n <option value=\"FL\">Florida</option>\r\n <option value=\"GA\">Georgia</option>\r\n <option value=\"GU\">Guam</option>\r\n <option value=\"HI\">Hawaii</option>\r\n <option value=\"ID\">Idaho</option>\r\n <option value=\"IL\">Illinois</option>\r\n <option value=\"IN\">Indiana</option>\r\n <option value=\"IA\">Iowa</option>\r\n <option value=\"KS\">Kansas</option>\r\n <option value=\"KY\">Kentucky</option>\r\n <option value=\"LA\">Louisiana</option>\r\n <option value=\"ME\">Maine</option>\r\n <option value=\"MH\">Marshall Islands</option>\r\n <option value=\"MD\">Maryland</option>\r\n <option value=\"MA\">Massachusetts</option>\r\n <option value=\"MI\">Michigan</option>\r\n <option value=\"MN\">Minnesota</option>\r\n <option value=\"MS\">Mississippi</option>\r\n <option value=\"MO\">Missouri</option>\r\n <option value=\"MT\">Montana</option>\r\n <option value=\"NE\">Nebraska</option>\r\n <option value=\"NV\">Nevada</option>\r\n <option value=\"NH\">New Hampshire</option>\r\n <option value=\"NJ\">New Jersey</option>\r\n <option value=\"NM\">New Mexico</option>\r\n <option value=\"NY\">New York</option>\r\n <option value=\"NC\">North Carolina</option>\r\n <option value=\"ND\">North Dakota</option>\r\n <option value=\"MP\">Northern Mariana Islands</option>\r\n <option value=\"OH\">Ohio</option>\r\n <option value=\"OK\">Oklahoma</option>\r\n <option value=\"OR\">Oregon</option>\r\n <option value=\"PW\">Palau</option>\r\n <option value=\"PA\">Pennsylvania</option>\r\n <option value=\"PR\">Puerto Rico</option>\r\n <option value=\"RI\">Rhode Island</option>\r\n <option value=\"SC\">South Carolina</option>\r\n <option value=\"SD\">South Dakota</option>\r\n <option value=\"TN\">Tennessee</option>\r\n <option value=\"TX\">Texas</option>\r\n <option value=\"UT\">Utah</option>\r\n <option value=\"VT\">Vermont</option>\r\n <option value=\"VI\">Virgin Islands</option>\r\n <option value=\"VA\">Virginia</option>\r\n <option value=\"WA\">Washington</option>\r\n <option value=\"WV\">West Virginia</option>\r\n <option value=\"WI\">Wisconsin</option>\r\n <option value=\"WY\">Wyoming</option>\r\n</select>\r\n</label>\r\n\r\n<label> Zip*\r\n [text* zip placeholder \"Type your Zip\"] </label>\r\n\r\n[submit \"Rush my order\"]\n1\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@wordpressdemo.subscriptionflow.com>\n[_site_admin_email]\nFrom: [your-name] [your-email]\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis is a notification that a contact form was submitted on your website ([_site_title] [_site_url]).\nReply-To: [your-email]\n\n\n\n\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@wordpressdemo.subscriptionflow.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis email is a receipt for your contact form submission on our website ([_site_title] [_site_url]) in which your email address was used. If that was not you, please ignore this message.\nReply-To: [_site_admin_email]\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nPlease fill out this field.\nThis field has a too long input.\nThis field has a too short input.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe uploaded file is too large.\nThere was an error uploading the file.\nPlease enter an email address.\nPlease enter a URL.\nPlease enter a telephone number.\nPlease enter a date in YYYY-MM-DD format.\nThis field has a too early date.\nThis field has a too late date.\nPlease enter a number.\nThis field has a too small number.\nThis field has a too large number.\nThe answer to the quiz is incorrect.\nskip_mail: on','Payment Widget','','publish','closed','closed','','untitled','','','2023-12-01 11:33:31','2023-12-01 11:33:31','',0,'https://wordpressdemo.subscriptionflow.com/?post_type=wpcf7_contact_form&p=2531',0,'wpcf7_contact_form','',0),(2532,1,'2023-11-30 12:51:51','2023-11-30 12:51:51','','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 12:51:51','2023-11-30 12:51:51','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2532',0,'revision','',0),(2533,1,'2023-11-30 12:51:51','2023-11-30 12:51:51','','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 12:51:51','2023-11-30 12:51:51','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2533',0,'revision','',0),(2534,1,'2023-11-30 12:51:51','2023-11-30 12:51:51','','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 12:51:51','2023-11-30 12:51:51','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2534',0,'revision','',0),(2535,1,'2023-11-30 12:53:22','2023-11-30 12:53:22','','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 12:53:22','2023-11-30 12:53:22','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2535',0,'revision','',0),(2536,1,'2023-11-30 12:53:22','2023-11-30 12:53:22','','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 12:53:22','2023-11-30 12:53:22','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2536',0,'revision','',0),(2537,1,'2023-11-30 12:53:22','2023-11-30 12:53:22','[contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 12:53:22','2023-11-30 12:53:22','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2537',0,'revision','',0),(2538,1,'2023-11-30 12:59:26','2023-11-30 12:59:26','[contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 12:59:26','2023-11-30 12:59:26','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2538',0,'revision','',0),(2539,1,'2023-11-30 12:59:26','2023-11-30 12:59:26','[contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 12:59:26','2023-11-30 12:59:26','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2539',0,'revision','',0),(2540,1,'2023-11-30 12:59:26','2023-11-30 12:59:26','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 12:59:26','2023-11-30 12:59:26','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2540',0,'revision','',0),(2541,1,'2023-11-30 13:05:43','2023-11-30 13:05:43','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:05:43','2023-11-30 13:05:43','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2541',0,'revision','',0),(2542,1,'2023-11-30 13:05:43','2023-11-30 13:05:43','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:05:43','2023-11-30 13:05:43','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2542',0,'revision','',0),(2543,1,'2023-11-30 13:05:44','2023-11-30 13:05:44','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:05:44','2023-11-30 13:05:44','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2543',0,'revision','',0),(2544,1,'2023-11-30 13:06:02','2023-11-30 13:06:02','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:06:02','2023-11-30 13:06:02','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2544',0,'revision','',0),(2545,1,'2023-11-30 13:06:02','2023-11-30 13:06:02','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:06:02','2023-11-30 13:06:02','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2545',0,'revision','',0),(2546,1,'2023-11-30 13:06:02','2023-11-30 13:06:02','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:06:02','2023-11-30 13:06:02','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2546',0,'revision','',0),(2547,1,'2023-11-30 13:06:43','2023-11-30 13:06:43','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:06:43','2023-11-30 13:06:43','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2547',0,'revision','',0),(2548,1,'2023-11-30 13:06:43','2023-11-30 13:06:43','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:06:43','2023-11-30 13:06:43','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2548',0,'revision','',0),(2549,1,'2023-11-30 13:06:43','2023-11-30 13:06:43','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:06:43','2023-11-30 13:06:43','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2549',0,'revision','',0),(2550,1,'2023-11-30 13:07:17','2023-11-30 13:07:17','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:07:17','2023-11-30 13:07:17','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2550',0,'revision','',0),(2551,1,'2023-11-30 13:07:17','2023-11-30 13:07:17','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:07:17','2023-11-30 13:07:17','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2551',0,'revision','',0),(2552,1,'2023-11-30 13:07:17','2023-11-30 13:07:17','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:07:17','2023-11-30 13:07:17','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2552',0,'revision','',0),(2553,1,'2023-11-30 13:07:23','2023-11-30 13:07:23','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:07:23','2023-11-30 13:07:23','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2553',0,'revision','',0),(2554,1,'2023-11-30 13:07:23','2023-11-30 13:07:23','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:07:23','2023-11-30 13:07:23','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2554',0,'revision','',0),(2555,1,'2023-11-30 13:07:23','2023-11-30 13:07:23','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:07:23','2023-11-30 13:07:23','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2555',0,'revision','',0),(2556,1,'2023-11-30 13:08:46','2023-11-30 13:08:46','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:08:46','2023-11-30 13:08:46','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2556',0,'revision','',0),(2557,1,'2023-11-30 13:08:46','2023-11-30 13:08:46','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:08:46','2023-11-30 13:08:46','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2557',0,'revision','',0),(2558,1,'2023-11-30 13:08:46','2023-11-30 13:08:46','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:08:46','2023-11-30 13:08:46','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2558',0,'revision','',0),(2559,1,'2023-11-30 13:09:01','2023-11-30 13:09:01','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:09:01','2023-11-30 13:09:01','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2559',0,'revision','',0),(2560,1,'2023-11-30 13:09:01','2023-11-30 13:09:01','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:09:01','2023-11-30 13:09:01','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2560',0,'revision','',0),(2561,1,'2023-11-30 13:09:01','2023-11-30 13:09:01','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:09:01','2023-11-30 13:09:01','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2561',0,'revision','',0),(2562,1,'2023-11-30 13:09:59','2023-11-30 13:09:59','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:09:59','2023-11-30 13:09:59','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2562',0,'revision','',0),(2563,1,'2023-11-30 13:09:59','2023-11-30 13:09:59','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:09:59','2023-11-30 13:09:59','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2563',0,'revision','',0),(2564,1,'2023-11-30 13:09:59','2023-11-30 13:09:59','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:09:59','2023-11-30 13:09:59','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2564',0,'revision','',0),(2565,1,'2023-11-30 13:11:59','2023-11-30 13:11:59','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:11:59','2023-11-30 13:11:59','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2565',0,'revision','',0),(2566,1,'2023-11-30 13:11:59','2023-11-30 13:11:59','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:11:59','2023-11-30 13:11:59','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2566',0,'revision','',0),(2567,1,'2023-11-30 13:11:59','2023-11-30 13:11:59','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:11:59','2023-11-30 13:11:59','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2567',0,'revision','',0),(2568,1,'2023-11-30 13:13:31','2023-11-30 13:13:31','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:13:31','2023-11-30 13:13:31','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2568',0,'revision','',0),(2569,1,'2023-11-30 13:13:31','2023-11-30 13:13:31','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:13:31','2023-11-30 13:13:31','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2569',0,'revision','',0),(2570,1,'2023-11-30 13:13:31','2023-11-30 13:13:31','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:13:31','2023-11-30 13:13:31','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2570',0,'revision','',0),(2571,1,'2023-11-30 13:14:35','2023-11-30 13:14:35','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:14:35','2023-11-30 13:14:35','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2571',0,'revision','',0),(2572,1,'2023-11-30 13:14:35','2023-11-30 13:14:35','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:14:35','2023-11-30 13:14:35','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2572',0,'revision','',0),(2573,1,'2023-11-30 13:14:36','2023-11-30 13:14:36','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:14:36','2023-11-30 13:14:36','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2573',0,'revision','',0),(2574,1,'2023-11-30 13:28:17','2023-11-30 13:28:17','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:28:17','2023-11-30 13:28:17','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2574',0,'revision','',0),(2575,1,'2023-11-30 13:28:17','2023-11-30 13:28:17','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:28:17','2023-11-30 13:28:17','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2575',0,'revision','',0),(2576,1,'2023-11-30 13:28:17','2023-11-30 13:28:17','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:28:17','2023-11-30 13:28:17','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2576',0,'revision','',0),(2577,1,'2023-11-30 13:28:45','2023-11-30 13:28:45','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:28:45','2023-11-30 13:28:45','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2577',0,'revision','',0),(2578,1,'2023-11-30 13:28:46','2023-11-30 13:28:46','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:28:46','2023-11-30 13:28:46','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2578',0,'revision','',0),(2579,1,'2023-11-30 13:28:46','2023-11-30 13:28:46','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:28:46','2023-11-30 13:28:46','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2579',0,'revision','',0),(2580,1,'2023-11-30 13:29:05','2023-11-30 13:29:05','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:29:05','2023-11-30 13:29:05','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2580',0,'revision','',0),(2581,1,'2023-11-30 13:29:06','2023-11-30 13:29:06','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:29:06','2023-11-30 13:29:06','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2581',0,'revision','',0),(2582,1,'2023-11-30 13:29:06','2023-11-30 13:29:06','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 13:29:06','2023-11-30 13:29:06','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2582',0,'revision','',0),(2583,1,'2023-11-30 14:09:24','2023-11-30 14:09:24','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 14:09:24','2023-11-30 14:09:24','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2583',0,'revision','',0),(2584,1,'2023-11-30 14:09:24','2023-11-30 14:09:24','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 14:09:24','2023-11-30 14:09:24','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2584',0,'revision','',0),(2585,1,'2023-11-30 14:09:24','2023-11-30 14:09:24','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 14:09:24','2023-11-30 14:09:24','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2585',0,'revision','',0),(2586,1,'2023-11-30 14:11:00','2023-11-30 14:11:00','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 14:11:00','2023-11-30 14:11:00','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2586',0,'revision','',0),(2587,1,'2023-11-30 14:11:00','2023-11-30 14:11:00','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 14:11:00','2023-11-30 14:11:00','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2587',0,'revision','',0),(2588,1,'2023-11-30 14:11:00','2023-11-30 14:11:00','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-11-30 14:11:00','2023-11-30 14:11:00','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2588',0,'revision','',0),(2589,1,'2023-12-01 10:10:54','2023-12-01 10:10:54','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-12-01 10:10:54','2023-12-01 10:10:54','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2589',0,'revision','',0),(2590,1,'2023-12-01 10:10:54','2023-12-01 10:10:54','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"712a0b1\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-12-01 10:10:54','2023-12-01 10:10:54','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2590',0,'revision','',0),(2591,1,'2023-12-01 10:10:54','2023-12-01 10:10:54','<style>/*! elementor - v3.16.0 - 17-10-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><h2>TELL US WHERE TO SEND YOUR PACKAGE!</h2> \n [contact-form-7 id=\"2531\" title=\"Payment Widget\"]','Payment Widget Demo','','inherit','closed','closed','','2529-revision-v1','','','2023-12-01 10:10:54','2023-12-01 10:10:54','',2529,'https://wordpressdemo.subscriptionflow.com/?p=2591',0,'revision','',0),(2592,1,'2023-12-01 10:42:30','2023-12-01 10:42:30',' ','','','publish','closed','closed','','2592','','','2023-12-01 10:42:30','2023-12-01 10:42:30','',0,'https://wordpressdemo.subscriptionflow.com/?p=2592',3,'nav_menu_item','',0),(2594,1,'2023-12-28 11:21:51','2023-12-28 11:21:51','<h1> Choosing Marijuana Legalization </h1> <img alt=\"marijuana legalization\" src=\"https://i.imgur.com/NHytkgS.jpg\" align=\"right\" style=\"max-height:312px; height:auto; max-width:43% width:auto; margin:0px 10px;\"> <p>Anyone 21 or older would have the ability to possess small quantities of marijuana and be permitted to grow a few plants in their house. According to the most recent reports coming out of Colorado, marijuana is a main cause of homicides in the state, and the challenge is simply getting worse. Marijuana is a lesser evil in comparison to opiates, Bennion explained. Legalized marijuana doesn\'t mean marijuana can be utilized in public. Legalization isn\'t a panacea, but it\'s far preferable to prohibition. He will not reduce the need to acquire resources often illegally to purchase a drug. Finally, he will grow the nation\'s economy by creating new job and business opportunities and government revenue to cover the budget deficit. </p> <p>Your problem might be extremely tough that you deal with and you simply cannot imagine having it to start with, but your counselor has seen almost everything. Some simply don\'t want to admit that there might be an issue. Furthermore, it would forbid taxing or regulating using marijuana. </p> <p>Egyptian treatment for constipation Egypt is recognized among the oldest culture on the planet. German cure for constipation Dandelion tea is quite popular with German men and women. French cure for constipation French men and women prefer to have mustard seeds so as to relieve from digestive complications. There are several practical treatments accessible to get rid off constipation troubles. Also, there are a number of which take care of the whole removal procedure. </p> <p>The initiative is called the Smart and Safe Arizona Act. It would allow the state to issue about 150 licenses for businesses to sell marijuana. Generally speaking, such initiatives have a tendency to follow along with the exact same pattern decriminalization of possession of small quantities, legalization of health usage, and, finally, legalization for recreation. There are three marijuana initiatives that may show up on the 2018 Arizona ballot should they collect the necessary variety of signatures. <a href=\"https://test.com\">test.com</a> Any such outreach will probably drive away lots of the white-working class voters Trump energized. The anti-marijuana organizations stress there are different products in the health care market that possess the exact same positive effects of Marijuana with minimal or not one of the negative side results. Therefore, it\'s understandable that individuals dealing with a cough or coughing are in need of home treatments for cough. </p>\r\n<p>The state is one of the most conservative to legalize medical marijuana. On Nov. 8, 2016, residents of Arizona are going to have the chance to create their state one of the absolute most cannabis-friendly states in the nation. Some produce deep, unconscious states that may be regulated to last for hours, while some are intended to permit for fast recovery after surgery. In California, among the biggest states in the country, all the large state-versus-federal conflicts are likely to be dramatically increased by what goes on. </p> <p>When you\'re smart enough to find policy coverage by the minute you\'re young, you can be certain about receiving the ideal premium rate according to your affordability. If you buy a medical insurance policy as you\'re at the youthful age, you won\'t require worrying about age limits and thus you can enjoy the advantages of health insurance for a longer period of time. The proposal would permit the personal possession and usage of cannabis for state residents who are 21 decades old or older. The legislation is going to be a lengthy shot under the conservative-led Legislature. Normally, the bill proposes allowing anyone over age 21 to possess as much as an ounce of pot, together with a few marijuana plants. Last but not least, if you don\'t plan on using the money for purchasing a new modern vehicle, there are different forms of investments which you can make. The money produced from the sales tax would go toward funding medical care services for veterans. </p>','Choosing Marijuana Legalization','','publish','open','open','','choosing-marijuana-legalization-95','','','2023-12-28 13:10:38','2023-12-28 13:10:38','',0,'https://wordpressdemo.subscriptionflow.com/?p=2594',0,'post','',0),(2595,1,'2023-12-28 13:10:38','2023-12-28 13:10:38','<h1> Choosing Marijuana Legalization </h1> <img alt=\"marijuana legalization\" src=\"https://i.imgur.com/NHytkgS.jpg\" align=\"right\" style=\"max-height:312px; height:auto; max-width:43% width:auto; margin:0px 10px;\"> <p>Anyone 21 or older would have the ability to possess small quantities of marijuana and be permitted to grow a few plants in their house. According to the most recent reports coming out of Colorado, marijuana is a main cause of homicides in the state, and the challenge is simply getting worse. Marijuana is a lesser evil in comparison to opiates, Bennion explained. Legalized marijuana doesn\'t mean marijuana can be utilized in public. Legalization isn\'t a panacea, but it\'s far preferable to prohibition. He will not reduce the need to acquire resources often illegally to purchase a drug. Finally, he will grow the nation\'s economy by creating new job and business opportunities and government revenue to cover the budget deficit. </p> <p>Your problem might be extremely tough that you deal with and you simply cannot imagine having it to start with, but your counselor has seen almost everything. Some simply don\'t want to admit that there might be an issue. Furthermore, it would forbid taxing or regulating using marijuana. </p> <p>Egyptian treatment for constipation Egypt is recognized among the oldest culture on the planet. German cure for constipation Dandelion tea is quite popular with German men and women. French cure for constipation French men and women prefer to have mustard seeds so as to relieve from digestive complications. There are several practical treatments accessible to get rid off constipation troubles. Also, there are a number of which take care of the whole removal procedure. </p> <p>The initiative is called the Smart and Safe Arizona Act. It would allow the state to issue about 150 licenses for businesses to sell marijuana. Generally speaking, such initiatives have a tendency to follow along with the exact same pattern decriminalization of possession of small quantities, legalization of health usage, and, finally, legalization for recreation. There are three marijuana initiatives that may show up on the 2018 Arizona ballot should they collect the necessary variety of signatures. <a href=\"https://test.com\">test.com</a> Any such outreach will probably drive away lots of the white-working class voters Trump energized. The anti-marijuana organizations stress there are different products in the health care market that possess the exact same positive effects of Marijuana with minimal or not one of the negative side results. Therefore, it\'s understandable that individuals dealing with a cough or coughing are in need of home treatments for cough. </p>\r\n<p>The state is one of the most conservative to legalize medical marijuana. On Nov. 8, 2016, residents of Arizona are going to have the chance to create their state one of the absolute most cannabis-friendly states in the nation. Some produce deep, unconscious states that may be regulated to last for hours, while some are intended to permit for fast recovery after surgery. In California, among the biggest states in the country, all the large state-versus-federal conflicts are likely to be dramatically increased by what goes on. </p> <p>When you\'re smart enough to find policy coverage by the minute you\'re young, you can be certain about receiving the ideal premium rate according to your affordability. If you buy a medical insurance policy as you\'re at the youthful age, you won\'t require worrying about age limits and thus you can enjoy the advantages of health insurance for a longer period of time. The proposal would permit the personal possession and usage of cannabis for state residents who are 21 decades old or older. The legislation is going to be a lengthy shot under the conservative-led Legislature. Normally, the bill proposes allowing anyone over age 21 to possess as much as an ounce of pot, together with a few marijuana plants. Last but not least, if you don\'t plan on using the money for purchasing a new modern vehicle, there are different forms of investments which you can make. The money produced from the sales tax would go toward funding medical care services for veterans. </p>','Choosing Marijuana Legalization','','inherit','closed','closed','','2594-revision-v1','','','2023-12-28 13:10:38','2023-12-28 13:10:38','',2594,'https://wordpressdemo.subscriptionflow.com/?p=2595',0,'revision','',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_520_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 (130,30,0),(130,40,0),(337,21,0),(337,40,0),(340,20,0),(340,40,0),(351,29,0),(351,40,0),(409,2,0),(409,15,0),(409,32,0),(409,33,0),(1943,28,0),(1943,40,0),(2099,2,0),(2099,15,0),(2099,32,0),(2099,33,0),(2100,2,0),(2100,15,0),(2100,32,0),(2100,33,0),(2177,27,0),(2370,42,0),(2392,2,0),(2392,15,0),(2454,43,0),(2520,42,0),(2592,42,0),(2594,1,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_520_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_520_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=44 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_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,'product_type','',0,4),(3,3,'product_type','',0,0),(4,4,'product_type','',0,0),(5,5,'product_type','',0,0),(6,6,'product_visibility','',0,0),(7,7,'product_visibility','',0,0),(8,8,'product_visibility','',0,0),(9,9,'product_visibility','',0,0),(10,10,'product_visibility','',0,0),(11,11,'product_visibility','',0,0),(12,12,'product_visibility','',0,0),(13,13,'product_visibility','',0,0),(14,14,'product_visibility','',0,0),(15,15,'product_cat','',0,4),(17,17,'product_tag','',0,0),(19,19,'product_tag','',0,0),(20,20,'wpr_template_type','',0,1),(21,21,'wpr_template_type','',0,1),(22,22,'product_tag','',0,0),(24,24,'product_tag','',0,0),(25,25,'product_tag','',0,0),(26,26,'product_tag','',0,0),(27,27,'elementor_library_type','',0,1),(28,28,'wpr_template_type','',0,1),(29,29,'wpr_template_type','',0,1),(30,30,'wpr_template_type','',0,1),(32,32,'product_tag','',0,3),(33,33,'product_tag','',0,3),(34,34,'product_tag','',0,0),(36,36,'product_tag','',0,0),(37,37,'product_tag','',0,0),(39,39,'product_tag','',0,0),(40,40,'wpr_template_type','',0,5),(42,42,'nav_menu','',0,3),(43,43,'elementor_library_type','',0,1); /*!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_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=67 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_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 */; INSERT INTO `wp_termmeta` VALUES (9,17,'product_count_product_tag','0'),(18,19,'product_count_product_tag','0'),(19,22,'product_count_product_tag','0'),(25,24,'product_count_product_tag','0'),(26,25,'product_count_product_tag','0'),(27,26,'product_count_product_tag','0'),(36,32,'product_count_product_tag','3'),(37,33,'product_count_product_tag','3'),(38,34,'product_count_product_tag','0'),(47,36,'product_count_product_tag','0'),(48,37,'product_count_product_tag','0'),(57,39,'product_count_product_tag','0'),(66,15,'product_count_product_cat','4'); /*!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_520_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_520_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=44 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_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,'simple','simple',0),(3,'grouped','grouped',0),(4,'variable','variable',0),(5,'external','external',0),(6,'exclude-from-search','exclude-from-search',0),(7,'exclude-from-catalog','exclude-from-catalog',0),(8,'featured','featured',0),(9,'outofstock','outofstock',0),(10,'rated-1','rated-1',0),(11,'rated-2','rated-2',0),(12,'rated-3','rated-3',0),(13,'rated-4','rated-4',0),(14,'rated-5','rated-5',0),(15,'Uncategorized','uncategorized',0),(17,'colorful','colorful',0),(19,'exotic','exotic',0),(20,'footer','footer',0),(21,'header','header',0),(22,'luxury','luxury',0),(24,'neon','neon',0),(25,'neutral','neutral',0),(26,'opepiece','opepiece',0),(27,'page','page',0),(28,'popup','popup',0),(29,'product_archive','product_archive',0),(30,'product_single','product_single',0),(32,'sport','sport',0),(33,'summer','summer',0),(34,'swimsuit','swimsuit',0),(36,'Swimwear','swimwear',0),(37,'texture','texture',0),(39,'tropical','tropical',0),(40,'user','user',0),(42,'Main Menu','main-menu',0),(43,'popup','popup',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_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`umeta_id`), KEY `user_id` (`user_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=1044 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_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','SubscriptionFlow_Demo'),(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','theme_editor_notice,plugin_editor_notice,id3,id5,app1'),(15,1,'show_welcome_panel','0'),(17,1,'wp_dashboard_quick_press_last_post_id','2528'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"119.73.117.0\";}'),(19,1,'wc_last_active','1704499200'),(20,1,'_woocommerce_tracks_anon_id','woo:UAZNy/cEE5xJ82JtDVvNYie1'),(21,1,'nav_menu_recently_edited','42'),(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:5:{i:0;s:28:\"add-post-type-e-landing-page\";i:1;s:21:\"add-post-type-product\";i:2;s:12:\"add-post_tag\";i:3;s:15:\"add-product_cat\";i:4;s:15:\"add-product_tag\";}'),(24,1,'meta-box-order_product','a:3:{s:4:\"side\";s:84:\"submitdiv,postimagediv,woocommerce-product-images,product_catdiv,tagsdiv-product_tag\";s:6:\"normal\";s:92:\"woocommerce-product-data,,postexcerpt,postcustom,slugdiv,wc_sf_repeatable-fields,commentsdiv\";s:8:\"advanced\";s:0:\"\";}'),(25,1,'wp_user-settings','posts_list_mode=list&libraryContent=browse&editor=tinymce'),(26,1,'wp_user-settings-time','1673019367'),(27,1,'closedpostboxes_product','a:0:{}'),(28,1,'metaboxhidden_product','a:2:{i:1;s:10:\"postcustom\";i:2;s:7:\"slugdiv\";}'),(29,1,'screen_layout_product','2'),(30,1,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(31,1,'wp_media_library_mode','list'),(134,1,'last_update','1670411176'),(135,1,'wp_persisted_preferences','a:2:{s:14:\"core/edit-post\";a:3:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;s:10:\"openPanels\";a:3:{i:0;s:11:\"post-status\";i:1;s:14:\"featured-image\";i:2;s:15:\"page-attributes\";}}s:9:\"_modified\";s:24:\"2022-12-07T11:06:15.928Z\";}'),(456,15,'nickname','rerettyqa@mailinator.com'),(457,15,'first_name','Malachi Kemp'),(458,15,'last_name',''),(459,15,'description',''),(460,15,'rich_editing','true'),(461,15,'syntax_highlighting','true'),(462,15,'comment_shortcuts','false'),(463,15,'admin_color','fresh'),(464,15,'use_ssl','0'),(465,15,'show_admin_bar_front','true'),(466,15,'locale',''),(467,15,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(468,15,'wp_user_level','0'),(469,15,'dismissed_wp_pointers',''),(470,15,'billing_first_name','Malachi Kemp'),(471,15,'billing_address_1','St#1'),(472,15,'billing_address_2','St#2'),(473,15,'billing_city','Lahore'),(474,15,'billing_postcode','54590'),(475,15,'billing_country','PK'),(476,15,'billing_state','Punjab'),(477,15,'billing_email','rerettyqa@mailinator.com'),(478,15,'shipping_first_name','Malachi Kemp'),(479,15,'shipping_address_1','St#1'),(480,15,'shipping_address_2','St#2'),(481,15,'shipping_city','Lahore'),(482,15,'shipping_postcode','54590'),(483,15,'shipping_country','PK'),(484,15,'shipping_state','Punjab'),(485,15,'shipping_email','rerettyqa@mailinator.com'),(486,15,'wc_sf_customer_id','230f6ab4-a6eb-4664-b957-4cdcfb1170b0'),(487,15,'session_tokens','a:1:{s:64:\"4b68a3c2ebfbe3d8ff9c711154df95394c5bdf93458f1e50042e79752ad1954a\";a:4:{s:10:\"expiration\";i:1671803006;s:2:\"ip\";s:12:\"110.39.3.246\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36\";s:5:\"login\";i:1671630206;}}'),(488,15,'wc_last_active','1671580800'),(490,15,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(492,16,'nickname','cimetav197@subdito.com'),(493,16,'first_name','John'),(494,16,'last_name',''),(495,16,'description',''),(496,16,'rich_editing','true'),(497,16,'syntax_highlighting','true'),(498,16,'comment_shortcuts','false'),(499,16,'admin_color','fresh'),(500,16,'use_ssl','0'),(501,16,'show_admin_bar_front','true'),(502,16,'locale',''),(503,16,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(504,16,'wp_user_level','0'),(505,16,'dismissed_wp_pointers',''),(506,16,'billing_first_name','John'),(507,16,'billing_address_1','123'),(508,16,'billing_address_2','456'),(509,16,'billing_city','New York City'),(510,16,'billing_postcode','10006'),(511,16,'billing_country','US'),(512,16,'billing_state','New York'),(513,16,'billing_email','cimetav197@subdito.com'),(514,16,'shipping_first_name','John'),(515,16,'shipping_address_1','123'),(516,16,'shipping_address_2','456'),(517,16,'shipping_city','New York City'),(518,16,'shipping_postcode','10006'),(519,16,'shipping_country','US'),(520,16,'shipping_state','New York'),(521,16,'shipping_email','cimetav197@subdito.com'),(522,16,'wc_sf_customer_id','dd15fd1d-13a7-4f20-80e6-5d9c0d6380d9'),(524,16,'wc_last_active','1671753600'),(526,16,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(528,17,'nickname','liga@mailinator.com'),(529,17,'first_name','Austin Holloway Nora Hahn'),(530,17,'last_name',''),(531,17,'description',''),(532,17,'rich_editing','true'),(533,17,'syntax_highlighting','true'),(534,17,'comment_shortcuts','false'),(535,17,'admin_color','fresh'),(536,17,'use_ssl','0'),(537,17,'show_admin_bar_front','true'),(538,17,'locale',''),(539,17,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(540,17,'wp_user_level','0'),(541,17,'dismissed_wp_pointers',''),(542,17,'billing_first_name','Austin Holloway Nora Hahn'),(543,17,'billing_address_1','Magnam placeat comm'),(544,17,'billing_address_2','Enim magnam aliquid '),(545,17,'billing_city','Ullam expedita facil'),(546,17,'billing_postcode','90242'),(547,17,'billing_country','MK'),(548,17,'billing_state','At aut exercitatione'),(549,17,'billing_email','liga@mailinator.com'),(550,17,'billing_phone','+1 (152) 381-5987'),(551,17,'shipping_first_name','Austin Holloway Nora Hahn'),(552,17,'shipping_address_1','Nemo rerum quidem ut'),(553,17,'shipping_address_2','Fuga Tempore repre'),(554,17,'shipping_city','Eiusmod sapiente ex '),(555,17,'shipping_postcode','37615'),(556,17,'shipping_country','TM'),(557,17,'shipping_state','Consequatur error la'),(558,17,'shipping_email','liga@mailinator.com'),(559,17,'shipping_phone','+1 (152) 381-5987'),(560,17,'wc_sf_customer_id','13a9281c-2fb4-43b0-ba8a-59d0c46679fc'),(565,1,'elementor_introduction','a:4:{s:7:\"exit_to\";b:1;s:27:\"ai-get-started-announcement\";b:1;s:20:\"globals_introduction\";b:1;s:6:\"e-apps\";b:1;}'),(566,1,'closedpostboxes_page','a:0:{}'),(567,1,'metaboxhidden_page','a:3:{i:0;s:11:\"commentsdiv\";i:1;s:7:\"slugdiv\";i:2;s:9:\"authordiv\";}'),(568,18,'nickname','quty@mailinator.com'),(569,18,'first_name','Bruce Head Cecilia Houston'),(570,18,'last_name',''),(571,18,'description',''),(572,18,'rich_editing','true'),(573,18,'syntax_highlighting','true'),(574,18,'comment_shortcuts','false'),(575,18,'admin_color','fresh'),(576,18,'use_ssl','0'),(577,18,'show_admin_bar_front','true'),(578,18,'locale',''),(579,18,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(580,18,'wp_user_level','0'),(581,18,'dismissed_wp_pointers',''),(582,18,'billing_first_name','Bruce Head Cecilia Houston'),(583,18,'billing_address_1','Illo natus quisquam '),(584,18,'billing_address_2','Quam consectetur omn'),(585,18,'billing_city','Aut reprehenderit ei'),(586,18,'billing_postcode','10093'),(587,18,'billing_country','CZ'),(588,18,'billing_state','Ex et reprehenderit '),(589,18,'billing_email','quty@mailinator.com'),(590,18,'billing_phone','+1 (912) 695-8809'),(591,18,'shipping_first_name','Bruce Head Cecilia Houston'),(592,18,'shipping_address_1','Laudantium elit ut'),(593,18,'shipping_address_2','Quidem tenetur tempo'),(594,18,'shipping_city','Sed voluptas nisi ac'),(595,18,'shipping_postcode','23344'),(596,18,'shipping_country','LV'),(597,18,'shipping_state','Architecto doloribus'),(598,18,'shipping_email','quty@mailinator.com'),(599,18,'shipping_phone','+1 (912) 695-8809'),(600,18,'wc_sf_customer_id','4fc3d0f9-5268-48ab-a4ea-b9fec406843a'),(602,18,'wc_last_active','1673481600'),(604,18,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(609,1,'closedpostboxes_nav-menus','a:0:{}'),(611,1,'elementor_admin_notices','a:1:{s:19:\"woocommerce_promote\";s:4:\"true\";}'),(616,19,'nickname','tovocazixa@mailinator.com'),(617,19,'first_name','Quon Love Pearl Williams'),(618,19,'last_name',''),(619,19,'description',''),(620,19,'rich_editing','true'),(621,19,'syntax_highlighting','true'),(622,19,'comment_shortcuts','false'),(623,19,'admin_color','fresh'),(624,19,'use_ssl','0'),(625,19,'show_admin_bar_front','true'),(626,19,'locale',''),(627,19,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(628,19,'wp_user_level','0'),(629,19,'dismissed_wp_pointers',''),(630,19,'billing_first_name','Quon Love Pearl Williams'),(631,19,'billing_address_1','Fugit aute deserunt'),(632,19,'billing_address_2','Minim dolore alias q'),(633,19,'billing_city','Rem delectus dolore'),(634,19,'billing_postcode','54968'),(635,19,'billing_country','ET'),(636,19,'billing_state','In quia qui perspici'),(637,19,'billing_email','tovocazixa@mailinator.com'),(638,19,'billing_phone','+1 (619) 797-8894'),(639,19,'shipping_first_name','Quon Love Pearl Williams'),(640,19,'shipping_address_1','Quod eiusmod non et '),(641,19,'shipping_address_2','Omnis eaque officia '),(642,19,'shipping_city','Quibusdam debitis re'),(643,19,'shipping_postcode','66665'),(644,19,'shipping_country','NG'),(645,19,'shipping_state','Est officiis veniam'),(646,19,'shipping_email','tovocazixa@mailinator.com'),(647,19,'shipping_phone','+1 (619) 797-8894'),(648,19,'wc_sf_customer_id','cef4aa75-edf5-4d90-9ea4-57117bc8d617'),(650,20,'nickname','kakibo@mailinator.com'),(651,20,'first_name','Unity Paul Nyssa Dodson'),(652,20,'last_name',''),(653,20,'description',''),(654,20,'rich_editing','true'),(655,20,'syntax_highlighting','true'),(656,20,'comment_shortcuts','false'),(657,20,'admin_color','fresh'),(658,20,'use_ssl','0'),(659,20,'show_admin_bar_front','true'),(660,20,'locale',''),(661,20,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(662,20,'wp_user_level','0'),(663,20,'dismissed_wp_pointers',''),(664,20,'billing_first_name','Unity Paul Nyssa Dodson'),(665,20,'billing_address_1','Ullam qui eligendi q'),(666,20,'billing_address_2','Modi inventore dolor'),(667,20,'billing_city','Veniam et qui sed l'),(668,20,'billing_postcode','81380'),(669,20,'billing_country','JO'),(670,20,'billing_state','Dolores sit in est '),(671,20,'billing_email','kakibo@mailinator.com'),(672,20,'billing_phone','+1 (135) 297-3286'),(673,20,'shipping_first_name','Unity Paul Nyssa Dodson'),(674,20,'shipping_address_1','Quibusdam consequatu'),(675,20,'shipping_address_2','Et quia hic veniam '),(676,20,'shipping_city','Debitis amet earum '),(677,20,'shipping_postcode','74804'),(678,20,'shipping_country','OM'),(679,20,'shipping_state','Inventore perferendi'),(680,20,'shipping_email','kakibo@mailinator.com'),(681,20,'shipping_phone','+1 (135) 297-3286'),(682,20,'wc_sf_customer_id','87a8d76a-278a-4c8c-8c12-8f4c4cd76d62'),(683,21,'nickname','regeboh@mailinator.com'),(684,21,'first_name','Veda Hinton'),(685,21,'last_name',''),(686,21,'description',''),(687,21,'rich_editing','true'),(688,21,'syntax_highlighting','true'),(689,21,'comment_shortcuts','false'),(690,21,'admin_color','fresh'),(691,21,'use_ssl','0'),(692,21,'show_admin_bar_front','true'),(693,21,'locale',''),(694,21,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(695,21,'wp_user_level','0'),(696,21,'dismissed_wp_pointers',''),(697,21,'billing_first_name','Veda Hinton'),(698,21,'billing_address_1','47 North Rocky Second Freeway'),(699,21,'billing_address_2','Aute repellendus Od'),(700,21,'billing_postcode','Est adipisci volupta'),(701,21,'billing_email','regeboh@mailinator.com'),(702,21,'billing_phone','+1 (906) 339-4461'),(703,21,'shipping_first_name','Veda Hinton'),(704,21,'shipping_address_1','47 North Rocky Second Freeway'),(705,21,'shipping_address_2','Aute repellendus Od'),(706,21,'shipping_postcode','Est adipisci volupta'),(707,21,'shipping_email','regeboh@mailinator.com'),(708,21,'shipping_phone','+1 (906) 339-4461'),(709,21,'wc_sf_customer_id','6bab1b82-ef35-40e1-a458-434c3213008c'),(710,21,'billing_last_name',''),(711,21,'billing_company',''),(712,21,'billing_city',''),(713,21,'billing_country',''),(714,21,'billing_state',''),(715,21,'shipping_last_name',''),(716,21,'shipping_company',''),(717,21,'shipping_city',''),(718,21,'shipping_country',''),(719,21,'shipping_state',''),(720,21,'last_update','1674472051'),(721,21,'session_tokens','a:1:{s:64:\"945b08bf622a9df9f2e5372ebe655d9d9976c9cb8a37e577c0b2b6d64a0ae37d\";a:4:{s:10:\"expiration\";i:1675681656;s:2:\"ip\";s:12:\"110.39.3.246\";s:2:\"ua\";s:80:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/109.0\";s:5:\"login\";i:1674472056;}}'),(722,21,'wc_last_active','1674432000'),(724,21,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(725,22,'nickname','tajonaqyhe@mailinator.com'),(726,22,'first_name','Hall Miles Althea Aguirre'),(727,22,'last_name',''),(728,22,'description',''),(729,22,'rich_editing','true'),(730,22,'syntax_highlighting','true'),(731,22,'comment_shortcuts','false'),(732,22,'admin_color','fresh'),(733,22,'use_ssl','0'),(734,22,'show_admin_bar_front','true'),(735,22,'locale',''),(736,22,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(737,22,'wp_user_level','0'),(738,22,'dismissed_wp_pointers',''),(739,22,'billing_first_name','Hall Miles Althea Aguirre'),(740,22,'billing_address_1','Iusto facere veniam'),(741,22,'billing_address_2','Nobis blanditiis ex '),(742,22,'billing_city','Nihil et incididunt '),(743,22,'billing_postcode','83959'),(744,22,'billing_country','TF'),(745,22,'billing_state','Dicta labore optio '),(746,22,'billing_email','tajonaqyhe@mailinator.com'),(747,22,'billing_phone','+1 (583) 319-7821'),(748,22,'shipping_first_name','Hall Miles Althea Aguirre'),(749,22,'shipping_address_1','Vel enim officiis si'),(750,22,'shipping_address_2','Vitae vel consequatu'),(751,22,'shipping_city','Enim deserunt exerci'),(752,22,'shipping_postcode','97346'),(753,22,'shipping_country','AF'),(754,22,'shipping_state','Est repudiandae aut'),(755,22,'shipping_email','tajonaqyhe@mailinator.com'),(756,22,'shipping_phone','+1 (583) 319-7821'),(757,22,'wc_sf_customer_id','d686a3fc-031c-46ae-ade3-f4690343bfd5'),(758,23,'nickname','wasaroke@mailinator.com'),(759,23,'first_name','Carla Donaldson Hadley Maxwell'),(760,23,'last_name',''),(761,23,'description',''),(762,23,'rich_editing','true'),(763,23,'syntax_highlighting','true'),(764,23,'comment_shortcuts','false'),(765,23,'admin_color','fresh'),(766,23,'use_ssl','0'),(767,23,'show_admin_bar_front','true'),(768,23,'locale',''),(769,23,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(770,23,'wp_user_level','0'),(771,23,'dismissed_wp_pointers',''),(772,23,'billing_first_name','Carla Donaldson Hadley Maxwell'),(773,23,'billing_address_1','Id voluptatem maxim'),(774,23,'billing_address_2','Distinctio Itaque n'),(775,23,'billing_city','Mollit provident mo'),(776,23,'billing_postcode','21222'),(777,23,'billing_country','PW'),(778,23,'billing_state','Ea tenetur et facere'),(779,23,'billing_email','wasaroke@mailinator.com'),(780,23,'shipping_first_name','Carla Donaldson Hadley Maxwell'),(781,23,'shipping_address_1','Magna dolore odio re'),(782,23,'shipping_address_2','Similique consequatu'),(783,23,'shipping_city','Doloribus repudianda'),(784,23,'shipping_postcode','28567'),(785,23,'shipping_country','BY'),(786,23,'shipping_state','Fugiat sequi aut eo'),(787,23,'shipping_email','wasaroke@mailinator.com'),(788,23,'wc_sf_customer_id','c9996742-9e5b-4ea4-9cb7-a739f4ae4412'),(789,24,'nickname','michael@mailnator.com'),(790,24,'first_name','Michael'),(791,24,'last_name',''),(792,24,'description',''),(793,24,'rich_editing','true'),(794,24,'syntax_highlighting','true'),(795,24,'comment_shortcuts','false'),(796,24,'admin_color','fresh'),(797,24,'use_ssl','0'),(798,24,'show_admin_bar_front','true'),(799,24,'locale',''),(800,24,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(801,24,'wp_user_level','0'),(802,24,'dismissed_wp_pointers',''),(803,24,'billing_first_name','Michael'),(804,24,'billing_email','michael@mailnator.com'),(805,24,'shipping_first_name','Michael'),(806,24,'shipping_email','michael@mailnator.com'),(807,24,'wc_sf_customer_id','ffcac4e9-702b-47e2-a431-753195a2f1b7'),(808,25,'nickname','qujizyqoq@mailinator.com'),(809,25,'first_name','Joel Alexander Georgia Paul'),(810,25,'last_name',''),(811,25,'description',''),(812,25,'rich_editing','true'),(813,25,'syntax_highlighting','true'),(814,25,'comment_shortcuts','false'),(815,25,'admin_color','fresh'),(816,25,'use_ssl','0'),(817,25,'show_admin_bar_front','true'),(818,25,'locale',''),(819,25,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(820,25,'wp_user_level','0'),(821,25,'dismissed_wp_pointers',''),(822,25,'billing_first_name','Joel Alexander Georgia Paul'),(823,25,'billing_address_1','Magni ut ullamco rei'),(824,25,'billing_address_2','Ut ullam delectus s'),(825,25,'billing_city','Tempora magni est Na'),(826,25,'billing_postcode','73402'),(827,25,'billing_country','BN'),(828,25,'billing_state','Quasi in proident p'),(829,25,'billing_email','qujizyqoq@mailinator.com'),(830,25,'billing_phone','+1 719-677-3857'),(831,25,'shipping_first_name','Joel Alexander Georgia Paul'),(832,25,'shipping_address_1','Ut aut voluptas volu'),(833,25,'shipping_address_2','Tenetur deleniti exc'),(834,25,'shipping_city','Sit perferendis cul'),(835,25,'shipping_postcode','10987'),(836,25,'shipping_country','SN'),(837,25,'shipping_state','Perspiciatis recusa'),(838,25,'shipping_email','qujizyqoq@mailinator.com'),(839,25,'shipping_phone','+1 719-677-3857'),(840,25,'wc_sf_customer_id','b73de214-a686-4ec1-882c-b67594ee9afd'),(841,26,'nickname','sovybuhula@mailinator.com'),(842,26,'first_name','Rosalyn Summers Gavin Middleton'),(843,26,'last_name',''),(844,26,'description',''),(845,26,'rich_editing','true'),(846,26,'syntax_highlighting','true'),(847,26,'comment_shortcuts','false'),(848,26,'admin_color','fresh'),(849,26,'use_ssl','0'),(850,26,'show_admin_bar_front','true'),(851,26,'locale',''),(852,26,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(853,26,'wp_user_level','0'),(854,26,'dismissed_wp_pointers',''),(855,26,'billing_first_name','Rosalyn Summers Gavin Middleton'),(856,26,'billing_address_1','Quo nihil odio velit'),(857,26,'billing_address_2','Id nulla exercitatio'),(858,26,'billing_city','Ad eiusmod qui elit'),(859,26,'billing_postcode','89244'),(860,26,'billing_country','JO'),(861,26,'billing_state','Reiciendis voluptas '),(862,26,'billing_email','sovybuhula@mailinator.com'),(863,26,'billing_phone','+1 938-278-1947'),(864,26,'shipping_first_name','Rosalyn Summers Gavin Middleton'),(865,26,'shipping_address_1','Id eligendi in asper'),(866,26,'shipping_address_2','Laboris laboriosam '),(867,26,'shipping_city','Neque veritatis quis'),(868,26,'shipping_postcode','71458'),(869,26,'shipping_country','AD'),(870,26,'shipping_state','Sapiente iure nihil '),(871,26,'shipping_email','sovybuhula@mailinator.com'),(872,26,'shipping_phone','+1 938-278-1947'),(873,26,'wc_sf_customer_id','81fdb206-0e8d-4ba5-ac52-44307fd917be'),(877,27,'nickname','bysovyval@mailinator.com'),(878,27,'first_name','Colt Maxwell Quemby Moody'),(879,27,'last_name',''),(880,27,'description',''),(881,27,'rich_editing','true'),(882,27,'syntax_highlighting','true'),(883,27,'comment_shortcuts','false'),(884,27,'admin_color','fresh'),(885,27,'use_ssl','0'),(886,27,'show_admin_bar_front','true'),(887,27,'locale',''),(888,27,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(889,27,'wp_user_level','0'),(890,27,'dismissed_wp_pointers',''),(891,27,'billing_first_name','Colt Maxwell Quemby Moody'),(892,27,'billing_address_1','Iusto nostrum ipsum'),(893,27,'billing_address_2','Nesciunt facilis cu'),(894,27,'billing_city','Aut cupiditate elit'),(895,27,'billing_postcode','73517'),(896,27,'billing_country','SO'),(897,27,'billing_state','Omnis enim in explic'),(898,27,'billing_email','bysovyval@mailinator.com'),(899,27,'shipping_first_name','Colt Maxwell Quemby Moody'),(900,27,'shipping_address_1','Iusto nostrum ipsum'),(901,27,'shipping_address_2','Nesciunt facilis cu'),(902,27,'shipping_city','Aut cupiditate elit'),(903,27,'shipping_postcode','73517'),(904,27,'shipping_country','SO'),(905,27,'shipping_state','Omnis enim in explic'),(906,27,'shipping_email','bysovyval@mailinator.com'),(907,27,'wc_sf_customer_id','ce8528e1-246e-447e-80bd-0ac518f21b00'),(908,28,'nickname','tymigose@mailinator.com'),(909,28,'first_name','Sarah Sanford Quon Flowers'),(910,28,'last_name',''),(911,28,'description',''),(912,28,'rich_editing','true'),(913,28,'syntax_highlighting','true'),(914,28,'comment_shortcuts','false'),(915,28,'admin_color','fresh'),(916,28,'use_ssl','0'),(917,28,'show_admin_bar_front','true'),(918,28,'locale',''),(919,28,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(920,28,'wp_user_level','0'),(921,28,'dismissed_wp_pointers',''),(922,28,'billing_first_name','Sarah Sanford Quon Flowers'),(923,28,'billing_address_1','Consequatur non dol'),(924,28,'billing_address_2','Voluptatem Velit re'),(925,28,'billing_city','Nesciunt obcaecati '),(926,28,'billing_postcode','13826'),(927,28,'billing_country','NZ'),(928,28,'billing_state','Ratione quia omnis d'),(929,28,'billing_email','tymigose@mailinator.com'),(930,28,'shipping_first_name','Sarah Sanford Quon Flowers'),(931,28,'shipping_address_1','Occaecat nihil cupid'),(932,28,'shipping_address_2','Velit praesentium s'),(933,28,'shipping_city','Mollit ut sint conse'),(934,28,'shipping_postcode','88857'),(935,28,'shipping_country','MY'),(936,28,'shipping_state','Sit in enim iure cu'),(937,28,'shipping_email','tymigose@mailinator.com'),(938,28,'wc_sf_customer_id','fde3bf6a-f83a-4ce2-bc08-897fab5e78f4'),(939,29,'nickname','kozeh@mailinator.com'),(940,29,'first_name','Julian Randall Emerald Walls'),(941,29,'last_name',''),(942,29,'description',''),(943,29,'rich_editing','true'),(944,29,'syntax_highlighting','true'),(945,29,'comment_shortcuts','false'),(946,29,'admin_color','fresh'),(947,29,'use_ssl','0'),(948,29,'show_admin_bar_front','true'),(949,29,'locale',''),(950,29,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(951,29,'wp_user_level','0'),(952,29,'dismissed_wp_pointers',''),(953,29,'billing_first_name','Julian Randall Emerald Walls'),(954,29,'billing_address_1','Aut exercitationem s'),(955,29,'billing_address_2','Adipisicing consequa'),(956,29,'billing_city','Quis aut id dolores '),(957,29,'billing_postcode','31477'),(958,29,'billing_country','AR'),(959,29,'billing_state','Occaecat officia exe'),(960,29,'billing_email','kozeh@mailinator.com'),(961,29,'billing_phone','+1 925-214-7361'),(962,29,'shipping_first_name','Julian Randall Emerald Walls'),(963,29,'shipping_address_1','Consequuntur obcaeca'),(964,29,'shipping_address_2','Modi ab eos soluta p'),(965,29,'shipping_city','In qui sunt nostrum '),(966,29,'shipping_postcode','59047'),(967,29,'shipping_country','RU'),(968,29,'shipping_state','Consectetur consequ'),(969,29,'shipping_email','kozeh@mailinator.com'),(970,29,'shipping_phone','+1 925-214-7361'),(971,29,'wc_sf_customer_id','612369e7-b8d2-4763-bbc4-966c062eb892'),(972,30,'nickname','Helen@test.com'),(973,30,'first_name','Helen Test'),(974,30,'last_name',''),(975,30,'description',''),(976,30,'rich_editing','true'),(977,30,'syntax_highlighting','true'),(978,30,'comment_shortcuts','false'),(979,30,'admin_color','fresh'),(980,30,'use_ssl','0'),(981,30,'show_admin_bar_front','true'),(982,30,'locale',''),(983,30,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(984,30,'wp_user_level','0'),(985,30,'dismissed_wp_pointers',''),(986,30,'billing_first_name','Helen Test'),(987,30,'billing_address_1','NY'),(988,30,'billing_address_2','NY'),(989,30,'billing_city','NYC'),(990,30,'billing_postcode','60750'),(991,30,'billing_country','US'),(992,30,'billing_state','NY'),(993,30,'billing_email','Helen@test.com'),(994,30,'shipping_first_name','Helen Test'),(995,30,'shipping_address_1','NY'),(996,30,'shipping_address_2','NY'),(997,30,'shipping_city','NYC'),(998,30,'shipping_postcode','60750'),(999,30,'shipping_country','US'),(1000,30,'shipping_state','NY'),(1001,30,'shipping_email','Helen@test.com'),(1002,30,'wc_sf_customer_id','1bfdffa2-16a5-45a8-a621-02898ccbcb29'),(1007,1,'session_tokens','a:1:{s:64:\"eb24a1183f5c916f88f960ea89365c8365a12b87b134f9416c495c233970d8c9\";a:4:{s:10:\"expiration\";i:1704689666;s:2:\"ip\";s:15:\"185.198.243.144\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.190 Safari/537.36\";s:5:\"login\";i:1704516866;}}'),(1010,31,'nickname','booblcnwdb'),(1011,31,'first_name','cutam3033f'),(1012,31,'last_name','iwlcnjd5d1'),(1013,31,'description',''),(1014,31,'rich_editing','true'),(1015,31,'syntax_highlighting','true'),(1016,31,'comment_shortcuts','false'),(1017,31,'admin_color','fresh'),(1018,31,'use_ssl','0'),(1019,31,'show_admin_bar_front','true'),(1020,31,'locale',''),(1021,31,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(1022,31,'wp_user_level','10'),(1023,31,'dismissed_wp_pointers',''),(1031,1,'wpr_compare','a:0:{}'),(1032,1,'wpr_wishlist','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_520_ci NOT NULL DEFAULT '', `user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_status` int(11) NOT NULL DEFAULT '0', `display_name` varchar(250) COLLATE utf8mb4_unicode_520_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=32 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_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,'SubscriptionFlow_Demo','$P$BZ616iZ421jC794kzPsjDRzm9ZtG1r/','subscriptionflow_demo','info@demo.com','https://wordpressdemo.subscriptionflow.com','2022-12-06 13:48:13','',0,'SubscriptionFlow_Demo'),(15,'rerettyqa@mailinator.com','$P$Bj3PQDUYnZTneH2qileksLNd1JnubK0','malachi-kemp','rerettyqa@mailinator.com','','2022-12-21 13:42:56','',0,'Malachi Kemp'),(16,'cimetav197@subdito.com','$P$BTRvo5gzpjfcANZzc9QXjXHBE5itgE1','john','cimetav197@subdito.com','','2022-12-23 10:12:21','',0,'John'),(17,'liga@mailinator.com','$P$BxPGV7f5XabELWGGcCpFUkW/ZkajMX1','austin-holloway-nora-hahn','liga@mailinator.com','','2023-01-02 14:41:27','',0,'Austin Holloway Nora Hahn'),(18,'quty@mailinator.com','$P$Bv0nnIw1ps2CENMoWEvmsTYxzl1ELZ0','bruce-head-cecilia-houston','quty@mailinator.com','','2023-01-06 19:39:42','',0,'Bruce Head Cecilia Houston'),(19,'tovocazixa@mailinator.com','$P$B2JMmTN2YOcJmZPIYPCTEU2KpNEUMo/','quon-love-pearl-williams','tovocazixa@mailinator.com','','2023-01-14 00:36:05','',0,'Quon Love Pearl Williams'),(20,'kakibo@mailinator.com','$P$BXU/t7y8z81f.MGBnpi06z4D91FwOI/','unity-paul-nyssa-dodson','kakibo@mailinator.com','','2023-01-17 15:44:25','',0,'Unity Paul Nyssa Dodson'),(21,'regeboh@mailinator.com','$P$B6NEI3GKz6uvcTK7ziXChlKDQn75Y.0','veda-hinton','regeboh@mailinator.com','','2023-01-23 11:05:44','',0,'Veda Hinton'),(22,'tajonaqyhe@mailinator.com','$P$BnSxIekDxgL/KihssAYkHevkZHc0Vu/','hall-miles-althea-aguirre','tajonaqyhe@mailinator.com','','2023-01-23 19:13:17','',0,'Hall Miles Althea Aguirre'),(23,'wasaroke@mailinator.com','$P$BpsU9j/E0w/KcWzsLg3AzRtp8.ipCJ.','carla-donaldson-hadley-maxwell','wasaroke@mailinator.com','','2023-02-15 15:25:04','',0,'Carla Donaldson Hadley Maxwell'),(24,'michael@mailnator.com','$P$BldX3dr9nhmXZblgk1PvaMVlqG5bUR.','michael','michael@mailnator.com','','2023-02-15 15:41:43','',0,'Michael'),(25,'qujizyqoq@mailinator.com','$P$B.yUQ870uxDb9R5KLU0xavzAnMqekb0','joel-alexander-georgia-paul','qujizyqoq@mailinator.com','','2023-02-27 17:08:40','',0,'Joel Alexander Georgia Paul'),(26,'sovybuhula@mailinator.com','$P$BiqwaitZAwQYeGDrs3XBZkDWUMd/NA1','rosalyn-summers-gavin-middleton','sovybuhula@mailinator.com','','2023-03-03 15:08:24','',0,'Rosalyn Summers Gavin Middleton'),(27,'bysovyval@mailinator.com','$P$B1.KFtDDOEpGc5fQTHPxLKmWQ14bx3/','colt-maxwell-quemby-moody','bysovyval@mailinator.com','','2023-04-05 18:14:03','',0,'Colt Maxwell Quemby Moody'),(28,'tymigose@mailinator.com','$P$Bw6Q2iI7L1soEu8YK/z0Fp5dC8cyvu.','sarah-sanford-quon-flowers','tymigose@mailinator.com','','2023-04-10 16:10:50','',0,'Sarah Sanford Quon Flowers'),(29,'kozeh@mailinator.com','$P$Br90/.j5uArh3HLgwKlB99xw9xvrnW0','julian-randall-emerald-walls','kozeh@mailinator.com','','2023-04-12 16:14:17','',0,'Julian Randall Emerald Walls'),(30,'Helen@test.com','$P$BQYJvHnzfAmKTRDgZwvalYtrOwt2Sb/','helen-test','Helen@test.com','','2023-04-18 18:34:00','',0,'Helen Test'),(31,'booblcnwdb','$P$Bbw6dTPXPpeqylccp0acaWmN8huLQY1','booblcnwdb','pumlgoahgu@tlgxs.com','','2023-10-08 11:26:42','',0,'cutam3033f iwlcnjd5d1'); /*!40000 ALTER TABLE `wp_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_admin_note_actions` -- DROP TABLE IF EXISTS `wp_wc_admin_note_actions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_admin_note_actions` ( `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `note_id` bigint(20) unsigned NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `label` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `query` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `status` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `actioned_text` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `nonce_action` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `nonce_name` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, PRIMARY KEY (`action_id`), KEY `note_id` (`note_id`) ) ENGINE=InnoDB AUTO_INCREMENT=30543 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_admin_note_actions` -- LOCK TABLES `wp_wc_admin_note_actions` WRITE; /*!40000 ALTER TABLE `wp_wc_admin_note_actions` DISABLE KEYS */; INSERT INTO `wp_wc_admin_note_actions` VALUES (41,35,'connect','Connect','?page=wc-addons§ion=helper','unactioned','',NULL,NULL),(42,36,'day-after-first-product','Learn more','https://woocommerce.com/document/woocommerce-customizer/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL),(43,37,'first-downloadable-product-handling','Learn more','https://woocommerce.com/document/digital-downloadable-product-handling/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL),(524,38,'visit-the-theme-marketplace','Visit the theme marketplace','https://woocommerce.com/product-category/themes/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL),(525,39,'affirm-insight-first-product-and-payment','Yes','','actioned','Thanks for your feedback',NULL,NULL),(526,39,'affirm-insight-first-product-and-payment','No','','actioned','Thanks for your feedback',NULL,NULL),(567,40,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_medium=product','actioned','',NULL,NULL),(736,43,'meta-hasFB-dec-q4-2022','Connect your store','https://wordpressdemo.subscriptionflow.com/wp-admin/admin.php?page=wc-facebook','unactioned','',NULL,NULL),(737,44,'view-payment-gateways','Learn more','https://woocommerce.com/product-category/woocommerce-extensions/payment-gateways/?utm_medium=product','actioned','',NULL,NULL),(824,46,'affirm-insight-first-sale','Yes','','actioned','Thanks for your feedback',NULL,NULL),(825,46,'deny-insight-first-sale','No','','actioned','Thanks for your feedback',NULL,NULL),(826,47,'tracking-opt-in','Activate usage tracking','','actioned','',NULL,NULL),(827,48,'learn-more','Learn more','https://woocommerce.com/payments/?utm_medium=product','unactioned','',NULL,NULL),(828,48,'get-started','Get started','https://wordpressdemo.subscriptionflow.com/wp-admin/admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned','','setup-woocommerce-payments',''),(871,45,'meta-noFB-dec-q4-2022','Get started','https://woocommerce.com/products/facebook/?utm_source=inbox_note&utm_medium=product&utm_campaign=meta-noFB-dec-q4-2022','unactioned','',NULL,NULL),(1247,34,'wc-admin-manualauthcapture','Learn more','https://woocommerce.com/document/woocommerce-payments/settings-guide/authorize-and-capture/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-manualauthcapture','actioned','',NULL,NULL),(1572,30,'tiktok-targeted-q4-2022-click','Launch a campaign','https://woocommerce.com/products/tiktok-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=tiktok-targeted-q4-2022-click','unactioned','',NULL,NULL),(1576,41,'apple_pay_square_q422','Enable Apple Pay','https://wordpressdemo.subscriptionflow.com/wp-admin/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=square_credit_card','unactioned','',NULL,NULL),(1577,42,'apple_pay_wcpay_q422','Enable Apple Pay','https://wordpressdemo.subscriptionflow.com/wp-admin/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments','unactioned','',NULL,NULL),(1756,21,'share-navigation-survey-feedback','Share feedback','https://automattic.survey.fm/feedback-on-woocommerce-navigation','actioned','',NULL,NULL),(2738,51,'storeediting_feedback_jan_2023','Share your input','https://t.maze.co/135212793','actioned','',NULL,NULL),(2983,29,'woocommerce_admin_deprecation_q4_2022','Deactivate WooCommerce Admin','https://wordpressdemo.subscriptionflow.com/wp-admin/plugins.php','actioned','',NULL,NULL),(2984,31,'paypal_paylater_g3_q4_22','Install PayPal Payments','https://woocommerce.com/products/woocommerce-paypal-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=paypal_paylater_g3_q4_22','unactioned','',NULL,NULL),(3025,32,'paypal_paylater_g2_q4_22','Install PayPal Payments','https://woocommerce.com/products/woocommerce-paypal-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=paypal_paylater_g2_q4_22','unactioned','',NULL,NULL),(4269,54,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL),(4870,55,'affirm_q1_2023','Get started with Affirm','https://woocommerce.com/products/woocommerce-gateway-affirm/?utm_source=inbox_note&utm_medium=product&utm_campaign=affirm_q1_2023','actioned','',NULL,NULL),(8155,74,'wc-admin-BNPL-WCPay-coming-soon','Sign up now','https://woocommerce.com/buy-now-pay-later-for-woocommerce-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-BNPL-WCPay-coming-soon','actioned','',NULL,NULL),(8613,87,'payoneer_q2_2023','Get started with Payoneer','https://woocommerce.com/products/payoneer-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=payoneer_q2_2023','actioned','',NULL,NULL),(8824,56,'google_listings_ads_pmax_i1_q1_2023_no_gla','Boost my business with Google','https://woocommerce.com/products/google-listings-and-ads/?utm_source=inbox_note&utm_medium=product&utm_campaign=google_listings_ads_pmax_i1_q1_2023_no_gla','actioned','',NULL,NULL),(8825,57,'google_listings_ads_pmax_i1_q1_2023_with_gla','Create a new ad','https://woocommerce.com/products/google-listings-and-ads/?utm_source=inbox_note&utm_medium=product&utm_campaign=google_listings_ads_pmax_i1_q1_2023_with_gla','actioned','',NULL,NULL),(9408,62,'wc-admin-wcpay-denmark-Q2-2023','Simplify my payments','https://woocommerce.com/payments/denmark/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-denmark-Q2-2023','actioned','',NULL,NULL),(9409,63,'wc-admin-wcpay-greece-Q2-2023','Simplify my payments','https://woocommerce.com/payments/greece/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-greece-Q2-2023','actioned','',NULL,NULL),(9410,64,'wc-admin-wcpay-norway-Q2-2023','Simplify my payments','https://woocommerce.com/payments/norway/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-norway-Q2-2023','actioned','',NULL,NULL),(9411,65,'wc-admin-wcpay-slovakia-Q2-2023','Simplify my payments','https://woocommerce.com/payments/slovakia/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-slovakia-Q2-2023','actioned','',NULL,NULL),(9412,66,'wc-admin-wcpay-finland-Q2-2023','Simplify my payments','https://woocommerce.com/payments/finland/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-finland-Q2-2023','actioned','',NULL,NULL),(9413,67,'wc-admin-wcpay-estonia-Q2-2023','Simplify my payments','https://woocommerce.com/payments/estonia/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-estonia-Q2-2023','actioned','',NULL,NULL),(9414,68,'wc-admin-wcpay-lithuania-Q2-2023','Simplify my payments','https://woocommerce.com/payments/lithuania/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-lithuania-Q2-2023','actioned','',NULL,NULL),(9415,69,'wc-admin-wcpay-slovenia-Q2-2023','Simplify my payments','https://woocommerce.com/payments/slovenia/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-slovenia-Q2-2023','actioned','',NULL,NULL),(9416,70,'wc-admin-wcpay-latvia-Q2-2023','Simplify my payments','https://woocommerce.com/payments/latvia/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-latvia-Q2-2023','actioned','',NULL,NULL),(9417,71,'wc-admin-wcpay-cyprus-Q2-2023','Simplify my payments','https://woocommerce.com/payments/cyprus/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-cyprus-Q2-2023','actioned','',NULL,NULL),(9418,72,'wc-admin-wcpay-malta-Q2-2023','Simplify my payments','https://woocommerce.com/payments/malta/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-malta-Q2-2023','actioned','',NULL,NULL),(9419,73,'wc-admin-wcpay-luxembourg-Q2-2023','Simplify my payments','https://woocommerce.com/payments/luxembourg/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-luxembourg-Q2-2023','actioned','',NULL,NULL),(9442,90,'product_management_card_sorting','Get started','https://t.maze.co/163892579','unactioned','',NULL,NULL),(9656,93,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL),(11971,104,'tiktok-spc_june-2023','Optimize my advertising','https://woocommerce.com/products/tiktok-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=tiktok-spc_june-2023','actioned','',NULL,NULL),(12680,1,'browse_extensions','Browse extensions','https://wordpressdemo.subscriptionflow.com/wp-admin/admin.php?page=wc-addons','unactioned','',NULL,NULL),(12888,26,'wc-admin-wisepad3','Grow my business offline','https://woocommerce.com/products/wisepad3-card-reader/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wisepad3','actioned','',NULL,NULL),(13338,33,'google_listings_ads_custom_attribute_mapping_q4_2022','Learn more','https://woocommerce.com/document/google-listings-and-ads/?utm_source=inbox_note&utm_medium=product&utm_campaign=google_listings_ads_custom_attribute_mapping_q4_2022#attribute-mapping','actioned','',NULL,NULL),(14094,96,'woocommerce_hpos_1st_notification_q2_2023','Learn more about HPOS','https://woocommerce.com/posts/platform-update-high-performance-order-storage-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=woocommerce_hpos_1st_notification_q2_2023','actioned','',NULL,NULL),(14283,108,'square_button_q3_2023','Get started with Square','https://woocommerce.com/products/square/?utm_source=inbox_note&utm_medium=product&utm_campaign=square_button_q3_2023','actioned','',NULL,NULL),(14732,109,'wc-admin-woopayments-rebrand','Learn more about WooPayments','https://woocommerce.com/payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-woopayments-rebrand','actioned','',NULL,NULL),(14832,114,'tiktok-apac-webinar-2023','RSVP today','https://unlockingtiktokwithwoocommerce.splashthat.com/','actioned','',NULL,NULL),(15301,116,'avalara_q3-2023_withAvaTax','Learn more about VAT settings','https://woocommerce.com/document/avalara-avatax/?utm_source=inbox_note&utm_medium=product&utm_campaign=avalara_q3-2023_withAvaTax#section-15','unactioned','',NULL,NULL),(15397,117,'google_uxstudy_recruitment_q3-2023','Take the survey','https://eachandother.fra1.qualtrics.com/jfe/form/SV_0W118szcJOtIkzc','unactioned','',NULL,NULL),(15758,98,'wc-admin-wcpay-bulgaria-Q2-2023','Simplify my payments','https://woocommerce.com/payments/bulgaria/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-bulgaria-Q2-2023','actioned','',NULL,NULL),(15759,99,'wc-admin-wcpay-czechia-Q2-2023','Simplify my payments','https://woocommerce.com/payments/czechia/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-czechia-Q2-2023','actioned','',NULL,NULL),(15760,100,'wc-admin-wcpay-croatia-Q2-2023','Simplify my payments','https://woocommerce.com/payments/croatia/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-croatia-Q2-2023','actioned','',NULL,NULL),(15761,101,'wc-admin-wcpay-hungary-Q2-2023','Simplify my payments','https://woocommerce.com/payments/hungary/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-hungary-Q2-2023','actioned','',NULL,NULL),(15762,102,'wc-admin-wcpay-romania-Q2-2023','Simplify my payments','https://woocommerce.com/payments/romania/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-romania-Q2-2023','actioned','',NULL,NULL),(15763,103,'wc-admin-wcpay-sweden-Q2-2023','Simplify my payments','https://woocommerce.com/payments/sweden/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-sweden-Q2-2023','actioned','',NULL,NULL),(16610,60,'tap_to_pay_iphone_q2_2023_with_wcpay','Set up Tap to Pay on iPhone','https://woocommerce.com/document/woopayments/in-person-payments/tap-to-pay-iphone?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q2_2023_with_wcpay','actioned','',NULL,NULL),(17161,88,'ipp_refresh_q2_2023_us_inbox_notification','Grow my business on the go','https://woocommerce.com/in-person-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=ipp_refresh_q2_2023_us_inbox_notification','actioned','',NULL,NULL),(17162,89,'ipp_refresh_q2_2023_ca_inbox_notification','Grow my business on the go','https://woocommerce.com/in-person-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=ipp_refresh_q2_2023_ca_inbox_notification','actioned','',NULL,NULL),(17272,119,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL),(17703,120,'tiktok_shopGTM_q3-2023_hasTikTok','Learn more','https://woocommerce.com/document/tiktok-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=tiktok_shopGTM_q3-2023_hasTikTok','unactioned','',NULL,NULL),(17790,121,'tiktok_shopGTM_q3-2023_noTikTok','Learn more','https://woocommerce.com/products/tiktok-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=tiktok_shopGTM_q3-2023_noTikTok','unactioned','',NULL,NULL),(18309,122,'klaviyo_q3_2023','Integrate in minutes','https://woocommerce.com/products/klaviyo-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=klaviyo_q3_2023','unactioned','',NULL,NULL),(19719,123,'wc_admin_BNPL_WCPay_Q3_2023','Enable buy now, pay later','https://woocommerce.com/?post_type=documentation&p=18734002212927&preview=true&utm_source=inbox_note&utm_medium=product&utm_campaign=wc_admin_BNPL_WCPay_Q3_2023','actioned','',NULL,NULL),(19720,124,'wc_admin_afterpay_WCPay_Q3_2023','Enable buy now, pay later','https://woocommerce.com/?post_type=documentation&p=18734002212927&preview=true&utm_source=inbox_note&utm_medium=product&utm_campaign=wc_admin_afterpay_WCPay_Q3_2023','actioned','',NULL,NULL),(20712,126,'Klarna_Enable_CTA_10OCT23','Enable Klarna','https://wordpressdemo.subscriptionflow.com/wp-admin/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments/#payment-methods','actioned','',NULL,NULL),(20713,126,'Klarna_Update_CTA_10OCT23','Update WooPayments','https://wordpressdemo.subscriptionflow.com/wp-admin/wp-admin/plugins.php?s=woocommercepayments&plugin_status=all','actioned','',NULL,NULL),(22768,127,'wc_com_in_person_payments_card_sale_US_inbox_note_q4_23','Save 35%','https://woocommerce.com/products/m2-card-reader/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_com_in_person_payments_card_sale_US_inbox_note_q4_23','actioned','',NULL,NULL),(22769,128,'wc_com_in_person_payments_card_sale_UK_inbox_note_q4_23','Save 35%','https://woocommerce.com/products/wisepad3-card-reader/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_com_in_person_payments_card_sale_UK_inbox_note_q4_23','actioned','',NULL,NULL),(22770,129,'wc_com_in_person_payments_card_sale_CA_inbox_note_q4_23','Save 35%','https://woocommerce.com/products/wisepad3-card-reader/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_com_in_person_payments_card_sale_CA_inbox_note_q4_23','actioned','',NULL,NULL),(22773,131,'wc_admin_WooPay_Q4_2023','Get started today','https://wordpressdemo.subscriptionflow.com/wp-admin/https://woocommerce.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_admin_WooPay_Q4_2023','actioned','',NULL,NULL),(23531,133,'paypal_paylater_g2_q4_22','Install PayPal Payments','https://woo.com/products/woocommerce-paypal-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=paypal_paylater_g2_q4_22','unactioned','',NULL,NULL),(23864,132,'wc_admin_WooPay_Oct30_2023','Get started today','https://woo.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_admin_WooPay_Oct30_2023','actioned','',NULL,NULL),(24961,134,'disable-paystack-test-mode','Disable Paystack test mode','https://wordpressdemo.subscriptionflow.com/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=paystack','actioned','',NULL,NULL),(24966,135,'learn-more','Learn more','https://woocommerce.com/document/managing-orders/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL),(24967,136,'learn-more','Learn more','https://woocommerce.com/posts/pre-launch-checklist-the-essentials/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL),(25058,137,'view-report','View report','?page=wc-admin&path=/analytics/revenue&period=custom&compare=previous_year&after=2023-11-22&before=2023-11-22','actioned','',NULL,NULL),(27097,138,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL),(28226,139,'tap_to_pay_iphone_q4_2023_no_woopayments','Simplify my payments','https://woo.com/products/woopayments/?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q4_2023_no_woopayments','actioned','',NULL,NULL),(28227,140,'tap_to_pay_iphone_q4_2023_with_woopayments','Set up Tap to Pay on iPhone','https://woo.com/document/woopayments/in-person-payments/tap-to-pay-iphone/?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q4_2023_with_woopayments','actioned','',NULL,NULL),(29344,53,'update-db_run','Update WooCommerce Database','https://wordpressdemo.subscriptionflow.com/wp-admin/admin.php?page=wc-reports&tab=orders&range=last_month&do_update_woocommerce=true','unactioned','wc_db_update','wc_db_update','wc_db_update_nonce'),(29345,53,'update-db_learn-more','Learn more about updates','https://docs.woocommerce.com/document/how-to-update-woocommerce/','unactioned','',NULL,NULL),(30450,142,'amazon_pay_ext-link_q1-24','Register your account now','https://eu.amazonpayments.com/2024-eu-woopricepromoregistration?utm_campaign=woo-price-promo&utm_medium=AP&utm_source=lp&utm_content=main-cta&ld=APEUAPA-woo-price-promo-lp-24Q1','actioned','',NULL,NULL),(30451,2,'wayflyer_bnpl_q4_2021','Level up with funding','https://woo.com/products/wayflyer/?utm_source=inbox_note&utm_medium=product&utm_campaign=wayflyer_bnpl_q4_2021','actioned','',NULL,NULL),(30452,3,'wc_shipping_mobile_app_usps_q4_2021','Get WooCommerce Shipping','https://woo.com/woocommerce-shipping/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_usps_q4_2021','actioned','',NULL,NULL),(30453,4,'learn-more','Learn more','https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox','unactioned','',NULL,NULL),(30454,5,'learn-more','Learn more','https://woo.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','actioned','',NULL,NULL),(30455,6,'optimizing-the-checkout-flow','Learn more','https://woo.com/posts/optimizing-woocommerce-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=optimizing-the-checkout-flow','actioned','',NULL,NULL),(30456,7,'qualitative-feedback-from-new-users','Share feedback','https://automattic.survey.fm/wc-pay-new','actioned','',NULL,NULL),(30457,8,'share-feedback','Share feedback','http://automattic.survey.fm/paypal-feedback','unactioned','',NULL,NULL),(30458,9,'get-started','Get started','https://woo.com/products/google-listings-and-ads?utm_source=inbox_note&utm_medium=product&utm_campaign=get-started','actioned','',NULL,NULL),(30459,10,'update-wc-subscriptions-3-0-15','View latest version','https://wordpressdemo.subscriptionflow.com/wp-admin/&page=wc-addons§ion=helper','actioned','',NULL,NULL),(30460,11,'update-wc-core-5-4-0','How to update WooCommerce','https://docs.woocommerce.com/document/how-to-update-woocommerce/','actioned','',NULL,NULL),(30461,14,'ppxo-pps-install-paypal-payments-1','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned','',NULL,NULL),(30462,15,'ppxo-pps-install-paypal-payments-2','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned','',NULL,NULL),(30463,16,'learn-more','Learn more','https://woo.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL),(30464,16,'dismiss','Dismiss','','actioned','',NULL,NULL),(30465,17,'learn-more','Learn more','https://woo.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL),(30466,17,'dismiss','Dismiss','','actioned','',NULL,NULL),(30467,18,'learn-more','Learn more','https://woo.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL),(30468,18,'dismiss','Dismiss','','actioned','',NULL,NULL),(30469,19,'learn-more','Learn more','https://woo.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL),(30470,19,'dismiss','Dismiss','','actioned','',NULL,NULL),(30471,20,'share-feedback','Share feedback','https://automattic.survey.fm/store-management','unactioned','',NULL,NULL),(30472,22,'learn-more','Learn more','https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/','unactioned','',NULL,NULL),(30473,22,'woocommerce-core-paypal-march-2022-dismiss','Dismiss','','actioned','',NULL,NULL),(30474,23,'learn-more','Learn more','https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/','unactioned','',NULL,NULL),(30475,23,'dismiss','Dismiss','','actioned','',NULL,NULL),(30476,24,'pinterest_03_2022_update','Update Instructions','https://woo.com/document/pinterest-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=pinterest_03_2022_update#section-3','actioned','',NULL,NULL),(30477,25,'store_setup_survey_survey_q2_2022_share_your_thoughts','Tell us how it’s going','https://automattic.survey.fm/store-setup-survey-2022','actioned','',NULL,NULL),(30478,27,'learn-more','Find out more','https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/','unactioned','',NULL,NULL),(30479,27,'dismiss','Dismiss','','actioned','',NULL,NULL),(30480,28,'learn-more','Find out more','https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/','unactioned','',NULL,NULL),(30481,28,'dismiss','Dismiss','','actioned','',NULL,NULL),(30482,49,'needs-update-eway-payment-gateway-rin-action-button-2022-12-20','See available updates','https://wordpressdemo.subscriptionflow.com/wp-admin/update-core.php','unactioned','',NULL,NULL),(30483,49,'needs-update-eway-payment-gateway-rin-dismiss-button-2022-12-20','Dismiss','#','actioned','',NULL,NULL),(30484,50,'updated-eway-payment-gateway-rin-action-button-2022-12-20','See all updates','https://wordpressdemo.subscriptionflow.com/wp-admin/update-core.php','unactioned','',NULL,NULL),(30485,50,'updated-eway-payment-gateway-rin-dismiss-button-2022-12-20','Dismiss','#','actioned','',NULL,NULL),(30486,52,'share-navigation-survey-feedback','Share feedback','https://automattic.survey.fm/new-ecommerce-plan-navigation','actioned','',NULL,NULL),(30487,77,'woopay-beta-merchantrecruitment-activate-04MAY23','Activate WooPay','https://wordpressdemo.subscriptionflow.com/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL),(30488,77,'woopay-beta-merchantrecruitment-activate-learnmore-04MAY23','Learn More','https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-activate-learnmore-04MAY23','unactioned','',NULL,NULL),(30489,58,'woocommerce-wcpay-march-2023-update-needed-button','See Blog Post','https://developer.woocommerce.com/2023/03/23/critical-vulnerability-detected-in-woocommerce-payments-what-you-need-to-know','unactioned','',NULL,NULL),(30490,58,'woocommerce-wcpay-march-2023-update-needed-dismiss-button','Dismiss','#','actioned','',NULL,NULL),(30491,59,'tap_to_pay_iphone_q2_2023_no_wcpay','Simplify my payments','https://woo.com/products/woocommerce-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q2_2023_no_wcpay','actioned','',NULL,NULL),(30492,61,'extension-settings','See available updates','https://wordpressdemo.subscriptionflow.com/wp-admin/update-core.php','unactioned','',NULL,NULL),(30493,61,'dismiss','Dismiss','#','actioned','',NULL,NULL),(30494,78,'woopay-beta-merchantrecruitment-update-WCPay-04MAY23','Update WooCommerce Payments','https://wordpressdemo.subscriptionflow.com/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(30495,78,'woopay-beta-merchantrecruitment-update-activate-04MAY23','Activate WooPay','https://wordpressdemo.subscriptionflow.com/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL),(30496,75,'woopay-beta-existingmerchants-noaction-documentation-27APR23','Documentation','https://woo.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-existingmerchants-noaction-documentation-27APR23','actioned','',NULL,NULL),(30497,76,'woopay-beta-existingmerchants-update-WCPay-27APR23','Update WooCommerce Payments','https://wordpressdemo.subscriptionflow.com/wp-admin/plugins.php?plugin_status=all','actioned','',NULL,NULL),(30498,79,'woopay-beta-merchantrecruitment-short-activate-04MAY23','Activate WooPay','https://wordpressdemo.subscriptionflow.com/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL),(30499,79,'woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23','Learn More','https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23','actioned','',NULL,NULL),(30500,80,'woopay-beta-merchantrecruitment-short-update-WCPay-04MAY23','Update WooCommerce Payments','https://wordpressdemo.subscriptionflow.com/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(30501,80,'woopay-beta-merchantrecruitment-short-update-activate-04MAY23','Activate WooPay','https://wordpressdemo.subscriptionflow.com/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL),(30502,81,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTA','Activate WooPay Test A','https://wordpressdemo.subscriptionflow.com/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL),(30503,81,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','Learn More','https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','unactioned','',NULL,NULL),(30504,82,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTB','Activate WooPay Test B','https://wordpressdemo.subscriptionflow.com/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL),(30505,82,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','Learn More','https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','unactioned','',NULL,NULL),(30506,83,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTC','Activate WooPay Test C','https://wordpressdemo.subscriptionflow.com/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL),(30507,83,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC','Learn More','https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC','unactioned','',NULL,NULL),(30508,84,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTD','Activate WooPay Test D','https://wordpressdemo.subscriptionflow.com/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL),(30509,84,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD','Learn More','https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD','unactioned','',NULL,NULL),(30510,85,'woopay-beta-merchantrecruitment-short-activate-button-09MAY23','Activate WooPay','https://wordpressdemo.subscriptionflow.com/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL),(30511,85,'woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23','Learn More','https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23','unactioned','',NULL,NULL),(30512,86,'woopay-beta-merchantrecruitment-short-update-WCPay-09MAY23','Update WooCommerce Payments','https://wordpressdemo.subscriptionflow.com/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(30513,86,'woopay-beta-merchantrecruitment-short-update-activate-09MAY23','Activate WooPay','https://wordpressdemo.subscriptionflow.com/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL),(30514,91,'woocommerce-WCStripe-May-2023-updated-needed-Plugin-Settings','See available updates','https://wordpressdemo.subscriptionflow.com/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(30515,91,'woocommerce-WCStripe-May-2023-updated-needed-Plugin-Settings-dismiss','Dismiss','#','actioned','',NULL,NULL),(30516,95,'woocommerce-WCPayments-June-2023-updated-needed-Plugin-Settings','See available updates','https://wordpressdemo.subscriptionflow.com/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(30517,95,'woocommerce-WCPayments-June-2023-updated-needed-Dismiss','Dismiss','#','actioned','',NULL,NULL),(30518,94,'woocommerce-WCSubscriptions-June-2023-updated-needed-Plugin-Settings','See available updates','https://wordpressdemo.subscriptionflow.com/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(30519,94,'woocommerce-WCSubscriptions-June-2023-updated-needed-dismiss','Dismiss','#','actioned','',NULL,NULL),(30520,92,'woocommerce-WCReturnsWarranty-June-2023-updated-needed','See available updates','https://wordpressdemo.subscriptionflow.com/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(30521,92,'woocommerce-WCReturnsWarranty-June-2023-updated-needed','Dismiss','#','actioned','',NULL,NULL),(30522,97,'woocommerce-WCOPC-June-2023-updated-needed','See available updates','https://wordpressdemo.subscriptionflow.com/wp-admin/plugins.php?plugin_status=all','actioned','',NULL,NULL),(30523,97,'woocommerce-WCOPC-June-2023-updated-needed','Dismiss','https://wordpressdemo.subscriptionflow.com/wp-admin/#','actioned','',NULL,NULL),(30524,105,'woocommerce-WCGC-July-2023-update-needed','See available updates','https://wordpressdemo.subscriptionflow.com/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(30525,105,'woocommerce-WCGC-July-2023-update-needed','Dismiss','#','actioned','',NULL,NULL),(30526,106,'learn-more','Learn more','https://woo.com/document/fedex/?utm_medium=product&utm_source=inbox_note&utm_campaign=learn-more#july-2023-api-outage','unactioned','',NULL,NULL),(30527,107,'plugin-list','See available updates','https://wordpressdemo.subscriptionflow.com/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(30528,107,'dismiss','Dismiss','https://wordpressdemo.subscriptionflow.com/wp-admin/admin.php?page=wc-admin','actioned','',NULL,NULL),(30529,110,'woocommerce-WCStripe-Aug-2023-update-needed','See available updates','https://wordpressdemo.subscriptionflow.com/wp-admin/update-core.php?','unactioned','',NULL,NULL),(30530,110,'dismiss','Dismiss','#','actioned','',NULL,NULL),(30531,111,'dismiss','Dismiss','#','actioned','',NULL,NULL),(30532,112,'woocommerce-WooPayments-Aug-2023-update-needed','See available updates','https://wordpressdemo.subscriptionflow.com/wp-admin/update-core.php?','unactioned','',NULL,NULL),(30533,112,'dismiss','Dismiss','#','actioned','',NULL,NULL),(30534,113,'dismiss','Dismiss','#','actioned','',NULL,NULL),(30535,115,'avalara_q3-2023_noAvaTax','Automate my sales tax','https://woo.com/products/woocommerce-avatax/?utm_source=inbox_note&utm_medium=product&utm_campaign=avalara_q3-2023_noAvaTax','unactioned','',NULL,NULL),(30536,118,'woo-activation-survey-blockers-survey-button-22AUG23','Take our short survey','https://woocommerce.survey.fm/getting-started-with-woo','unactioned','',NULL,NULL),(30537,125,'woocommerce-usermeta-Sept2023-productvendors','See available updates','https://wordpressdemo.subscriptionflow.com/wp-admin/plugins.php','unactioned','',NULL,NULL),(30538,125,'dismiss','Dismiss','https://wordpressdemo.subscriptionflow.com/wp-admin/#','actioned','',NULL,NULL),(30539,130,'woocommerce-STRIPE-Oct-2023-update-needed','See available updates','https://wordpressdemo.subscriptionflow.com/wp-admin/update-core.php','unactioned','',NULL,NULL),(30540,130,'dismiss','Dismiss','#','actioned','',NULL,NULL),(30541,141,'amazon-mcf-review-button-2023-12-07','Leave a review','https://woo.com/products/woocommerce-amazon-fulfillment/?review&utm_source=inbox_note&utm_medium=product&utm_campaign=amazon-mcf-review-button-2023-12-07','actioned','',NULL,NULL),(30542,141,'amazon-mcf-support-button-2023-12-07','Request support','https://woo.com/my-account/contact-support/?utm_source=inbox_note&utm_medium=product&utm_campaign=amazon-mcf-support-button-2023-12-07','actioned','',NULL,NULL); /*!40000 ALTER TABLE `wp_wc_admin_note_actions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_admin_notes` -- DROP TABLE IF EXISTS `wp_wc_admin_notes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_admin_notes` ( `note_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL, `locale` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL, `title` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `content_data` longtext COLLATE utf8mb4_unicode_520_ci, `status` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL, `source` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL, `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `date_reminder` datetime DEFAULT NULL, `is_snoozable` tinyint(1) NOT NULL DEFAULT '0', `layout` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `image` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `is_deleted` tinyint(1) NOT NULL DEFAULT '0', `is_read` tinyint(1) NOT NULL DEFAULT '0', `icon` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'info', PRIMARY KEY (`note_id`) ) ENGINE=InnoDB AUTO_INCREMENT=143 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_admin_notes` -- LOCK TABLES `wp_wc_admin_notes` WRITE; /*!40000 ALTER TABLE `wp_wc_admin_notes` DISABLE KEYS */; INSERT INTO `wp_wc_admin_notes` VALUES (1,'new_in_app_marketplace_2021','info','en_US','Customize your store with extensions','Check out our NEW Extensions tab to see our favorite extensions for customizing your store, and discover the most popular extensions in the WooCommerce Marketplace.','{}','unactioned','woocommerce.com','2022-12-06 14:04:01',NULL,0,'plain','',0,0,'info'),(2,'wayflyer_bnpl_q4_2021','marketing','en_US','Grow your business with funding through Wayflyer','Fast, flexible financing to boost cash flow and help your business grow – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store’s performance, Wayflyer provides funding and analytical insights to invest in your business.','{}','pending','woocommerce.com','2022-12-06 14:04:01',NULL,0,'plain','',0,0,'info'),(3,'wc_shipping_mobile_app_usps_q4_2021','marketing','en_US','Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App','Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woo.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!','{}','pending','woocommerce.com','2022-12-06 14:04:01',NULL,0,'plain','',0,0,'info'),(4,'woocommerce-services','info','en_US','WooCommerce Shipping & Tax','WooCommerce Shipping & Tax helps get your store \"ready to sell\" as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.','{}','pending','woocommerce.com','2022-12-06 14:04:01',NULL,0,'plain','',0,0,'info'),(5,'your-first-product','info','en_US','Your first product','That’s huge! You’re well on your way to building a successful online store — now it’s time to think about how you’ll fulfill your orders.<br /><br />Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woo.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.','{}','pending','woocommerce.com','2022-12-06 14:04:01',NULL,0,'plain','',0,0,'info'),(6,'wc-admin-optimizing-the-checkout-flow','info','en_US','Optimizing the checkout flow','It’s crucial to get your store’s checkout as smooth as possible to avoid losing sales. Let’s take a look at how you can optimize the checkout experience for your shoppers.','{}','unactioned','woocommerce.com','2023-11-22 14:23:59',NULL,0,'plain','',0,0,'info'),(7,'wc-payments-qualitative-feedback','info','en_US','WooCommerce Payments setup - let us know what you think','Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.','{}','pending','woocommerce.com','2022-12-06 14:04:01',NULL,0,'plain','',0,0,'info'),(8,'share-your-feedback-on-paypal','info','en_US','Share your feedback on PayPal','Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.','{}','pending','woocommerce.com','2022-12-06 14:04:01',NULL,0,'plain','',0,0,'info'),(9,'google_listings_and_ads_install','marketing','en_US','Drive traffic and sales with Google','Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.','{}','pending','woocommerce.com','2022-12-06 14:04:01',NULL,0,'plain','',0,0,'info'),(10,'wc-subscriptions-security-update-3-0-15','info','en_US','WooCommerce Subscriptions security update!','We recently released an important security update to WooCommerce Subscriptions. To ensure your site’s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br /><br />Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woo.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br /><br />We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br /><br />If you have any questions we are here to help — just <a href=\"https://woo.com/my-account/create-a-ticket/\">open a ticket</a>.','{}','pending','woocommerce.com','2022-12-06 14:04:01',NULL,0,'plain','',0,0,'info'),(11,'woocommerce-core-update-5-4-0','info','en_US','Update to WooCommerce 5.4.1 now','WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.','{}','pending','woocommerce.com','2022-12-06 14:04:01',NULL,0,'plain','',0,0,'info'),(12,'wcpay-promo-2020-11','marketing','en_US','wcpay-promo-2020-11','wcpay-promo-2020-11','{}','pending','woocommerce.com','2022-12-06 14:04:01',NULL,0,'plain','',0,0,'info'),(13,'wcpay-promo-2020-12','marketing','en_US','wcpay-promo-2020-12','wcpay-promo-2020-12','{}','pending','woocommerce.com','2022-12-06 14:04:01',NULL,0,'plain','',0,0,'info'),(14,'ppxo-pps-upgrade-paypal-payments-1','info','en_US','Get the latest PayPal extension for WooCommerce','Heads up! There’s a new PayPal on the block!<br /><br />Now is a great time to upgrade to our latest <a href=\"https://woo.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br /><br />Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.','{}','pending','woocommerce.com','2022-12-06 14:04:01',NULL,0,'plain','',0,0,'info'),(15,'ppxo-pps-upgrade-paypal-payments-2','info','en_US','Upgrade your PayPal experience!','Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br /><br />Start using our <a href=\"https://woo.com/products/woocommerce-paypal-payments/\" target=\"_blank\">latest PayPal today</a> to continue to receive support and updates.','{}','pending','woocommerce.com','2022-12-06 14:04:01',NULL,0,'plain','',0,0,'info'),(16,'woocommerce-core-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2022-12-06 14:04:01',NULL,0,'plain','',0,0,'info'),(17,'woocommerce-blocks-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2022-12-06 14:04:01',NULL,0,'plain','',0,0,'info'),(18,'woocommerce-core-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br /><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2022-12-06 14:04:01',NULL,0,'plain','',0,0,'info'),(19,'woocommerce-blocks-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br /><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2022-12-06 14:04:01',NULL,0,'plain','',0,0,'info'),(20,'habit-moment-survey','marketing','en_US','We’re all ears! Share your experience so far with WooCommerce','We’d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.','{}','pending','woocommerce.com','2022-12-06 14:04:01',NULL,0,'plain','',0,0,'info'),(21,'ecomm-wc-navigation-survey','info','en_US','We’d like your feedback on the WooCommerce navigation','We’re making improvements to the WooCommerce navigation and would love your feedback. Share your experience in this 2 minute survey.','{}','pending','woocommerce.com','2022-12-06 14:04:01',NULL,0,'plain','',0,0,'info'),(22,'woocommerce-core-paypal-march-2022-updated','update','en_US','Security auto-update of WooCommerce','<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy PayPal Standard security updates for stores running WooCommerce (version 3.5 to 6.3). It’s recommended to disable PayPal Standard, and use <a href=\"https://woo.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal Payments</a> to accept PayPal.','{}','pending','woocommerce.com','2022-12-06 14:04:01',NULL,0,'plain','',0,0,'info'),(23,'woocommerce-core-paypal-march-2022-updated-nopp','update','en_US','Security auto-update of WooCommerce','<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).','{}','pending','woocommerce.com','2022-12-06 14:04:01',NULL,0,'plain','',0,0,'info'),(24,'pinterest_03_2022_update','marketing','en_US','Your Pinterest for WooCommerce plugin is out of date!','Update to the latest version of Pinterest for WooCommerce to continue using this plugin and keep your store connected with Pinterest. To update, visit <strong>Plugins > Installed Plugins</strong>, and click on “update now” under Pinterest for WooCommerce.','{}','pending','woocommerce.com','2022-12-06 14:04:02',NULL,0,'plain','',0,0,'info'),(25,'store_setup_survey_survey_q2_2022','survey','en_US','How is your store setup going?','Our goal is to make sure you have all the right tools to start setting up your store in the smoothest way possible.\r\nWe’d love to know if we hit our mark and how we can improve. To collect your thoughts, we made a 2-minute survey.','{}','unactioned','woocommerce.com','2022-12-13 14:06:36',NULL,0,'plain','',0,0,'info'),(26,'wc-admin-wisepad3','marketing','en_US','Take your business on the go in Canada with WooCommerce In-Person Payments','Quickly create new orders, accept payment in person for orders placed online, and automatically sync your inventory – no matter where your business takes you. With WooCommerce In-Person Payments and the WisePad 3 card reader, you can bring the power of your store anywhere.','{}','pending','woocommerce.com','2022-12-06 14:04:02',NULL,0,'plain','',0,0,'info'),(27,'woocommerce-payments-august-2022-need-to-update','update','en_US','Action required: Please update WooCommerce Payments','An updated secure version of WooCommerce Payments is available – please ensure that you’re using the latest patch version. For more information on what action you need to take, please review the article below.','{}','pending','woocommerce.com','2022-12-06 14:04:02',NULL,0,'plain','',0,0,'info'),(28,'woocommerce-payments-august-2022-store-patched','update','en_US','WooCommerce Payments has been automatically updated','You’re now running the latest secure version of WooCommerce Payments. We’ve worked with the WordPress Plugins team to deploy a security update to stores running WooCommerce Payments (version 3.9 to 4.5). For further information, please review the article below.','{}','pending','woocommerce.com','2022-12-06 14:04:02',NULL,0,'plain','',0,0,'info'),(29,'woocommerce_admin_deprecation_q4_2022','info','en_US','WooCommerce Admin is part of WooCommerce!','To make sure your store continues to run smoothly, check that WooCommerce is up-to-date – at least version 6.5 – and then disable the WooCommerce Admin plugin.','{}','pending','woocommerce.com','2022-12-06 14:04:02',NULL,0,'plain','',0,0,'info'),(30,'tiktok-targeted-q4-2022','marketing','en_US','Get $200 in ad credit from TikTok after you spend $20 on your first campaign','Reach one billion shoppers with TikTok for WooCommerce this holiday season! Sync your product catalog, capture insights, and create ad campaigns right from your dashboard. Connect your store today to unlock this limited time offer! <a href=\"https://ads.tiktok.com/help/article?aid=10011326\">Terms & conditions apply</a>.','{}','pending','woocommerce.com','2022-12-06 14:04:02',NULL,0,'plain','',0,0,'info'),(31,'paypal_paylater_g3_q4_22','marketing','en_US','Turn browsers into buyers with Pay Later','Add PayPal at checkout, plus give customers a buy now, pay later option from the name they trust. With Pay in 4 & Pay Monthly, available in PayPal Payments, you get paid up front while letting customers spread their payments over time. Boost your average order value and convert more sales – at no extra cost to you.','{}','unactioned','woocommerce.com','2023-01-23 15:02:24',NULL,0,'plain','',0,0,'info'),(32,'paypal_paylater_g2_q4_22','marketing','en_US','Upgrade to PayPal Payments to offer Pay Later at checkout','PayPal Pay Later is included in PayPal Payments at no additional cost to you. Customers can spread their payments over time while you get paid up front. \r\nThere’s never been a better time to upgrade your PayPal plugin. Simply download it and connect with a PayPal Business account.','{}','pending','woocommerce.com','2022-12-06 14:04:02',NULL,0,'plain','',0,0,'info'),(33,'google_listings_ads_custom_attribute_mapping_q4_2022','marketing','en_US','Our latest improvement to the Google Listings & Ads extension: Attribute Mapping','You spoke, we listened. This new feature enables you to easily upload your products, customize your product attributes in one place, and target shoppers with more relevant ads. Extend how far your ad dollars go with each campaign.','{}','pending','woocommerce.com','2022-12-06 14:04:02',NULL,0,'plain','',0,0,'info'),(34,'wc-admin-manualauthcapture','marketing','en_US','Miss fewer manual payments in WooCommerce Payments','Using WooCommerce Payments to manually authorize and capture payments? We’ve introduced a simplified and more efficient process, so you can miss fewer payments and continue to grow your revenue.','{}','pending','woocommerce.com','2022-12-06 14:04:02',NULL,0,'plain','',0,0,'info'),(35,'wc-admin-wc-helper-connection','info','en_US','Connect to WooCommerce.com','Connect to get important product notifications and updates.','{}','unactioned','woocommerce-admin','2022-12-06 14:04:02',NULL,0,'plain','',0,0,'info'),(36,'wc-admin-customizing-product-catalog','info','en_US','How to customize your product catalog','You want your product catalog and images to look great and align with your brand. This guide will give you all the tips you need to get your products looking great in your store.','{}','unactioned','woocommerce-admin','2022-12-06 14:04:43',NULL,0,'plain','',0,0,'info'),(38,'wc-admin-choosing-a-theme','marketing','en_US','Choosing a theme?','Check out the themes that are compatible with WooCommerce and choose one aligned with your brand and business needs.','{}','unactioned','woocommerce-admin','2022-12-07 14:40:01',NULL,0,'plain','',0,0,'info'),(40,'wc-admin-mobile-app','info','en_US','Install Woo mobile app','Install the WooCommerce mobile app to manage orders, receive sales notifications, and view key metrics — wherever you are.','{}','unactioned','woocommerce-admin','2022-12-09 13:23:42',NULL,0,'plain','',0,0,'info'),(41,'apple_pay_square_q422','marketing','en_US','Grow your business with Apple Pay','Start boosting your online conversions today with Apple Pay – shoppers can safely complete a purchase with a touch or a glance and are more likely to come back. Enable Apple Pay with Square by selecting Settings > Payments > Square.','{}','pending','woocommerce.com','2022-12-09 13:23:43',NULL,0,'plain','',0,0,'info'),(42,'apple_pay_wcpay_q422','marketing','en_US','Grow your business with Apple Pay','Start boosting your online conversions today with Apple Pay – shoppers can safely complete a purchase with a touch or a glance and are more likely to come back. Confirm Apple Pay is enabled by selecting Payments > Settings and making sure Enable express checkouts is checked.','{}','pending','woocommerce.com','2022-12-09 13:23:43',NULL,0,'plain','',0,0,'info'),(43,'meta-hasFB-dec-q4-2022','marketing','en_US','Power up your Facebook ad strategy','Did you know that new privacy policies may be decreasing the effectiveness of your Facebook ads? Get back on track with Meta’s Conversion API. It creates a direct connection between the marketing data from your store and Meta, helping you more accurately track, attribute and improve your Facebook marketing performance.','{}','pending','woocommerce.com','2022-12-10 14:13:17',NULL,0,'plain','',0,0,'info'),(44,'wc-admin-onboarding-payments-reminder','info','en_US','Start accepting payments on your store!','Take payments with the provider that’s right for you - choose from 100+ payment gateways for WooCommerce.','{}','unactioned','woocommerce-admin','2022-12-12 00:29:21',NULL,0,'plain','',0,0,'info'),(45,'meta-noFB-dec-q4-2022','marketing','en_US','Create highly targeted Facebook ads with Facebook for WooCommerce','Sync your product catalog to create Facebook ads and track their performance – all from within your WooCommerce dashboard. With improved tracking signals and speed, plus more accurate tracking with the introduction of Meta’s Conversion API, you’ll have all the tools you need to run effective ad campaigns.','{}','unactioned','woocommerce.com','2022-12-12 00:29:21',NULL,0,'plain','',0,0,'info'),(47,'wc-admin-usage-tracking-opt-in','info','en_US','Help WooCommerce improve with usage tracking','Gathering usage data allows us to improve WooCommerce. Your store will be considered as we evaluate new features, judge the quality of an update, or determine if an improvement makes sense. You can always visit the <a href=\"https://wordpressdemo.subscriptionflow.com/wp-admin/admin.php?page=wc-settings&tab=advanced&section=woocommerce_com\" target=\"_blank\">Settings</a> and choose to stop sharing data. <a href=\"https://woocommerce.com/usage-tracking?utm_medium=product\" target=\"_blank\">Read more</a> about what data we collect.','{}','unactioned','woocommerce-admin','2022-12-13 14:06:35',NULL,0,'plain','',0,0,'info'),(48,'wc-admin-woocommerce-payments','marketing','en_US','Try the new way to get paid','Securely accept credit and debit cards on your site. Manage transactions without leaving your WordPress dashboard. Only with <strong>WooPayments</strong>.<br><br>By clicking \"Get started\", you agree to our <a href=\"https://wordpress.com/tos/\" target=\"_blank\">Terms of Service</a>','{}','unactioned','woocommerce-admin','2022-12-13 14:06:35',NULL,0,'plain','',0,0,'info'),(49,'needs-update-eway-payment-gateway-rin-2022-12-20','update','en_US','Security vulnerability patched in WooCommerce Eway Gateway','In response to a potential vulnerability identified in WooCommerce Eway Gateway versions 3.1.0 to 3.5.0, we’ve worked to deploy security fixes and have released an updated version.\r\nNo external exploits have been detected, but we recommend you update to your latest supported version 3.1.26, 3.2.3, 3.3.1, 3.4.6, or 3.5.1','{}','pending','woocommerce.com','2023-01-04 14:19:33',NULL,0,'plain','',0,0,'info'),(50,'updated-eway-payment-gateway-rin-2022-12-20','update','en_US','WooCommerce Eway Gateway has been automatically updated','Your store is now running the latest secure version of WooCommerce Eway Gateway. We worked with the WordPress Plugins team to deploy a software update to stores running WooCommerce Eway Gateway (versions 3.1.0 to 3.5.0) in response to a security vulnerability that was discovered.','{}','pending','woocommerce.com','2023-01-04 14:19:33',NULL,0,'plain','',0,0,'info'),(51,'storeediting_feedback_jan_2023','marketing','en_US','Tell us what you need to customize your store!','We need your feedback. Please spare a few minutes to share your input on what is most important to you when designing and customizing your storefront to help us build the features you need.','{}','unactioned','woocommerce.com','2023-01-13 14:05:46',NULL,0,'plain','',0,0,'info'),(52,'ecomm-wc-navigation-survey-2023','info','en_US','Navigating WooCommerce on WordPress.com','We are improving the WooCommerce navigation on WordPress.com and would love your help to make it better! Please share your experience with us in this 2-minute survey.','{}','pending','woocommerce.com','2023-01-16 15:15:06',NULL,0,'plain','',0,0,'info'),(53,'wc-update-db-reminder','update','en_US','WooCommerce database update required','WooCommerce has been updated! To keep things running smoothly, we have to update your database to the newest version. The database update process runs in the background and may take a little while, so please be patient. Advanced users can alternatively update via <a href=\"https://github.com/woocommerce/woocommerce/wiki/Upgrading-the-database-using-WP-CLI\">WP CLI</a>.','{}','unactioned','woocommerce-core','2023-01-23 11:02:16',NULL,0,'plain','',0,0,'info'),(54,'wc-admin-real-time-order-alerts','info','en_US','Get real-time order alerts anywhere','Get notifications about store activity, including new orders and product reviews directly on your mobile devices with the Woo app.','{}','unactioned','woocommerce-admin','2023-03-06 15:03:45',NULL,0,'plain','',0,0,'info'),(55,'affirm_q1_2023','marketing','en_US','Turn more browsers into buyers with flexible payments','When you offer flexible payment options to shoppers, they\'re more likely to convert. It’s why businesses offering Affirm see an average order value lift of 63%. Affirm tailors your store\'s payment options with terms proven to reach new customers, boost conversions, and grow sales.','{}','unactioned','woocommerce.com','2023-03-14 07:28:24',NULL,0,'plain','',0,0,'info'),(56,'google_listings_ads_pmax_i1_q1_2023_no_gla','marketing','en_US','Create more engaging ads – without the hard work','Get in front of millions of shoppers searching for products like yours with Google Listings & Ads. With new customization features, Google automatically tests multiple combinations of text and images to create the most engaging ad to boost your business. Plus, get up to $500 in ad credit – terms and conditions apply.','{}','unactioned','woocommerce.com','2023-03-16 14:39:06',NULL,0,'plain','',0,0,'info'),(57,'google_listings_ads_pmax_i1_q1_2023_with_gla','marketing','en_US','New customization features to boost your business','You can now add custom images, messaging, and URLs to campaigns in Google Listings & Ads. Google then automatically tests multiple combinations to create the most engaging version to help boost your business. Get more sales with dynamic content – edit an existing campaign or create a new ad now.','{}','pending','woocommerce.com','2023-03-16 14:39:06',NULL,0,'plain','',0,0,'info'),(58,'woocommerce-wcpay-march-2023-update-needed','update','en_US','Action required: Security update for WooCommerce Payments','<strong>Your store requires a security update for WooCommerce Payments</strong>. Please update to the latest version of WooCommerce Payments immediately to address a potential vulnerability discovered on March 22. For more information on how to update, visit this WooCommerce Developer Blog Post.','{}','pending','woocommerce.com','2023-03-24 15:29:56',NULL,0,'plain','',0,0,'info'),(59,'tap_to_pay_iphone_q2_2023_no_wcpay','marketing','en_US','Accept in-person contactless payments on your iPhone','Tap to Pay on iPhone and WooCommerce Payments is quick, secure, and simple to set up — no extra terminals or card readers are needed. Accept contactless debit and credit cards, Apple Pay, and other NFC digital wallets in person.','{}','unactioned','woocommerce.com','2023-04-04 15:47:51',NULL,0,'plain','',0,0,'info'),(60,'tap_to_pay_iphone_q2_2023_with_wcpay','marketing','en_US','New: accept in-person contactless payments on your iPhone','Tap to Pay on iPhone is quick, secure, and simple to set up in WooCommerce Payments — no extra terminals or card readers are needed. Accept contactless debit and credit cards, Apple Pay, and other NFC digital wallets in person in a few short steps!','{}','pending','woocommerce.com','2023-04-04 15:47:51',NULL,0,'plain','',0,0,'info'),(61,'woocommerce-WCPreOrders-april-2023-update-needed','update','en_US','Action required: Security update of WooCommerce Pre-Orders extension','<strong>Your store requires a security update for the WooCommerce Pre-Orders extension</strong>. Please update the WooCommerce Pre-Orders extension immediately to address a potential vulnerability discovered on April 11.','{}','pending','woocommerce.com','2023-04-15 02:38:26',NULL,0,'plain','',0,0,'info'),(62,'wc-admin-wcpay-denmark-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Denmark!','We’ve recently released WooCommerce Payments in Denmark. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-04-15 02:38:26',NULL,0,'plain','',0,0,'info'),(63,'wc-admin-wcpay-greece-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Greece!','We’ve recently released WooCommerce Payments in Greece. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-04-15 02:38:26',NULL,0,'plain','',0,0,'info'),(64,'wc-admin-wcpay-norway-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Norway!','We’ve recently released WooCommerce Payments in Norway. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-04-15 02:38:26',NULL,0,'plain','',0,0,'info'),(65,'wc-admin-wcpay-slovakia-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Slovakia!','We’ve recently released WooCommerce Payments in Slovakia. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-04-15 02:38:26',NULL,0,'plain','',0,0,'info'),(66,'wc-admin-wcpay-finland-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Finland!','We’ve recently released WooCommerce Payments in Finland. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-04-15 02:38:26',NULL,0,'plain','',0,0,'info'),(67,'wc-admin-wcpay-estonia-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Estonia!','We’ve recently released WooCommerce Payments in Estonia. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-04-15 02:38:26',NULL,0,'plain','',0,0,'info'),(68,'wc-admin-wcpay-lithuania-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Lithuania!','We’ve recently released WooCommerce Payments in Lithuania. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-04-15 02:38:26',NULL,0,'plain','',0,0,'info'),(69,'wc-admin-wcpay-slovenia-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Slovenia!','We’ve recently released WooCommerce Payments in Slovenia. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-04-15 02:38:26',NULL,0,'plain','',0,0,'info'),(70,'wc-admin-wcpay-latvia-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Latvia!','We’ve recently released WooCommerce Payments in Latvia. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-04-15 02:38:26',NULL,0,'plain','',0,0,'info'),(71,'wc-admin-wcpay-cyprus-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Cyprus!','We’ve recently released WooCommerce Payments in Cyprus. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-04-15 02:38:26',NULL,0,'plain','',0,0,'info'),(72,'wc-admin-wcpay-malta-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Malta!','We’ve recently released WooCommerce Payments in Malta. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-04-15 02:38:26',NULL,0,'plain','',0,0,'info'),(73,'wc-admin-wcpay-luxembourg-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Luxembourg!','We’ve recently released WooCommerce Payments in Luxembourg. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-04-15 02:38:26',NULL,0,'plain','',0,0,'info'),(74,'wc_admin_BNPL_WCPay_coming-soon_Q1_2023','marketing','en_US','Buy now, pay later is heading to WooCommerce Payments','Great news: full integration with Afterpay and Affirm is on its way to WooCommerce Payments! You’ll soon be able to increase your order values, sell more, and offer customers a payment option they’ll love — with no extra downloads or extensions required.','{}','pending','woocommerce.com','2023-04-27 14:09:26',NULL,0,'plain','',0,0,'info'),(75,'woopay-beta-existingmerchants-noaction-27APR23','info','en_US','WooPay is back!','Thanks for previously trying WooPay, the express checkout feature built into WooCommerce Payments. We’re excited to announce that WooPay availability has resumed. No action is required on your part.\r\n<br /><br />\r\nYou can now continue boosting conversions by offering your customers a simple, secure way to pay with a single click.','{}','pending','woocommerce.com','2023-04-28 16:03:34',NULL,0,'plain','',0,0,'info'),(76,'woopay-beta-existingmerchants-update-27APR23','info','en_US','WooPay is back!','Thanks for previously trying WooPay, the express checkout feature built into WooCommerce Payments. We’re excited to announce that WooPay availability has resumed.\r\n<br /><br />\r\n\r\nUpdate to the latest WooCommerce Payments version to continue boosting conversions by offering your customers a simple, secure way to pay with a single click.','{}','pending','woocommerce.com','2023-04-28 16:03:34',NULL,0,'plain','',0,0,'info'),(77,'woopay-beta-merchantrecruitment-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','WooPay, a new express checkout feature built into WooCommerce Payments, is now available —and we’re inviting you to be one of the first to try it. \r\n<br><br>\r\nBoost conversions by offering your customers a simple, secure way to pay with a single click.\r\n<br><br>\r\nGet started in seconds.','{}','pending','woocommerce.com','2023-05-06 10:29:52',NULL,0,'plain','',0,0,'info'),(78,'woopay-beta-merchantrecruitment-update-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','WooPay, a new express checkout feature built into WooCommerce Payments, is now available — and you’re invited to try it. \r\n<br /><br />\r\nBoost conversions by offering your customers a simple, secure way to pay with a single click.\r\n<br /><br />\r\nUpdate WooCommerce Payments to get started.','{}','pending','woocommerce.com','2023-05-06 10:29:52',NULL,0,'plain','',0,0,'info'),(79,'woopay-beta-merchantrecruitment-short-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2023-05-06 10:29:53',NULL,0,'plain','',0,0,'info'),(80,'woopay-beta-merchantrecruitment-short-update-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, our new express checkout feature. <br>Boost conversions by letting customers pay with a single click. <br><br>Update to the latest version of WooCommerce Payments to get started.','{}','pending','woocommerce.com','2023-05-06 10:29:53',NULL,0,'plain','',0,0,'info'),(81,'woopay-beta-merchantrecruitment-short-06MAY23-TESTA','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2023-05-06 20:24:12',NULL,0,'plain','',0,0,'info'),(82,'woopay-beta-merchantrecruitment-short-06MAY23-TESTB','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2023-05-06 20:24:12',NULL,0,'plain','',0,0,'info'),(83,'woopay-beta-merchantrecruitment-short-06MAY23-TESTC','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2023-05-06 20:24:12',NULL,0,'plain','',0,0,'info'),(84,'woopay-beta-merchantrecruitment-short-06MAY23-TESTD','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2023-05-06 20:24:12',NULL,0,'plain','',0,0,'info'),(85,'woopay-beta-merchantrecruitment-short-09MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2023-05-10 15:04:32',NULL,0,'plain','',0,0,'info'),(86,'woopay-beta-merchantrecruitment-short-update-09MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, our new express checkout feature. <br>Boost conversions by letting customers pay with a single click. <br><br>Update to the latest version of WooCommerce Payments to get started.','{}','pending','woocommerce.com','2023-05-10 15:04:32',NULL,0,'plain','',0,0,'info'),(87,'payoneer_q2_2023','marketing','en_US','Grow with the next generation of payment processing','Ready to stand out in the new global economy? Payoneer Checkout gives you the power to securely accept payments worldwide, build a checkout that customers love, and manage your store’s transactions and finances – all from the same place.','{}','pending','woocommerce.com','2023-05-14 14:30:10',NULL,0,'plain','',0,0,'info'),(88,'ipp_refresh_q2_2023_us_inbox_notification','marketing','en_US','Grow on the go with in-person payments','Sell your products or services on the go with the M2 card reader – a quick, synchronized, and secure way to take payments, no matter where you are. Create an order using the WooCommerce mobile app and connect your card reader to accept payments.','{}','unactioned','woocommerce.com','2023-05-18 06:09:08',NULL,0,'plain','',0,0,'info'),(89,'ipp_refresh_q2_2023_ca_inbox_notification','marketing','en_US','Grow on the go with in-person payments','Sell your products or services on the go with the WisePad 3 card reader – a quick, synchronized, and secure way to take payments, no matter where you are. Create an order using the WooCommerce mobile app and connect your card reader to accept payments.','{}','pending','woocommerce.com','2023-05-18 06:09:08',NULL,0,'plain','',0,0,'info'),(90,'product_management_card_sorting','survey','en_US','How do you create and edit products?','Have a say in the future of WooCommerce. Take part in a brief exercise and help us understand what information is important to you while editing products.','{}','pending','woocommerce.com','2023-05-18 18:31:53',NULL,0,'plain','',0,0,'info'),(91,'woocommerce-WCstripe-May-2023-updated-needed','update','en_US','Action required: Security update of WooCommerce Stripe plugin','<strong>Your store requires a security update for the WooCommerce Stripe plugin</strong>. Please update the WooCommerce Stripe plugin immediately to address a potential vulnerability.','{}','pending','woocommerce.com','2023-06-02 14:09:46',NULL,0,'plain','',0,0,'info'),(92,'woocommerce-WCReturnsWarranty-June-2023-updated-needed','update','en_US','Action required: Security update of WooCommerce Returns and Warranty Requests extension','<strong>Your store requires a security update for the Returns and Warranty Requests extension</strong>. Please update to the latest version of the WooCommerce Returns and Warranty Requests extension immediately to address a potential vulnerability discovered on May 31.','{}','pending','woocommerce.com','2023-06-03 14:07:07',NULL,0,'plain','',0,0,'info'),(93,'wc-admin-manage-orders-on-the-go','info','en_US','Manage your orders on the go','Look for orders, customer info, and process refunds in one click with the Woo app.','{}','unactioned','woocommerce-admin','2023-06-04 14:19:19',NULL,0,'plain','',0,0,'info'),(94,'woocommerce-WCSubscriptions-June-2023-updated-needed','marketing','en_US','Action required: Security update of WooCommerce Subscriptions','<strong>Your store requires a security update for the WooCommerce Subscriptions plugin</strong>. Please update the WooCommerce Subscriptions plugin immediately to address a potential vulnerability.','{}','pending','woocommerce.com','2023-06-06 14:14:50',NULL,0,'plain','',0,0,'info'),(95,'woocommerce-WCPayments-June-2023-updated-needed','update','en_US','Action required: Security update of WooCommerce Payments','<strong>Your store requires a security update for the WooCommerce Payments plugin</strong>. Please update the WooCommerce Payments plugin immediately to address a potential vulnerability.','{}','pending','woocommerce.com','2023-06-07 14:37:44',NULL,0,'plain','',0,0,'info'),(96,'woocommerce_hpos_1st_notification_q2_2023','marketing','en_US','High-Performance Order Storage (HPOS) is on its way','Our team is targeting August 2023 to roll out a major database upgrade that can unlock faster checkout and order creation for your customers — and lightning-quick order lookup for you. Enablement is optional and you won’t be forced to update, but read on to see why this was our most requested new feature.','{}','unactioned','woocommerce.com','2023-06-07 14:37:44',NULL,0,'plain','',0,0,'info'),(97,'woocommerce-WCOPC-June-2023-updated-needed','update','en_US','Action required: Security update of WooCommerce One Page Checkout','<strong>Your shop requires a security update to address a vulnerability in the WooCommerce One Page Checkout extension</strong>. The fix for this vulnerability was released for this extension on June 13th. Please update immediately.','{}','pending','woocommerce.com','2023-06-21 14:35:11',NULL,0,'plain','',0,0,'info'),(98,'wc-admin-wcpay-bulgaria-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Bulgaria!','We’ve recently released WooCommerce Payments in Bulgaria. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-07-01 00:58:21',NULL,0,'plain','',0,0,'info'),(99,'wc-admin-wcpay-czechia-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Czechia!','We’ve recently released WooCommerce Payments in Czechia. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-07-01 00:58:21',NULL,0,'plain','',0,0,'info'),(100,'wc-admin-wcpay-croatia-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Croatia!','We’ve recently released WooCommerce Payments in Croatia. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-07-01 00:58:21',NULL,0,'plain','',0,0,'info'),(101,'wc-admin-wcpay-hungary-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Hungary!','We’ve recently released WooCommerce Payments in Hungary. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-07-01 00:58:21',NULL,0,'plain','',0,0,'info'),(102,'wc-admin-wcpay-romania-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Romania!','We’ve recently released WooCommerce Payments in Romania. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-07-01 00:58:21',NULL,0,'plain','',0,0,'info'),(103,'wc-admin-wcpay-sweden-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Sweden!','We’ve recently released WooCommerce Payments in Sweden. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-07-01 00:58:21',NULL,0,'plain','',0,0,'info'),(104,'tiktok-spc_june-2023','marketing','en_US','Take the guesswork out of TikTok advertising','Save time and create smarter ads using new automated campaign management from TikTok for WooCommerce. Simplify your campaign creation and watch TikTok’s machine learning build, target, and optimize ads that support your advertising goals — and grow your audience.','{}','unactioned','woocommerce.com','2023-07-01 00:58:21',NULL,0,'plain','',0,0,'info'),(105,'woocommerce-WCGC-July-2023-update-needed','update','en_US','Action required: Security update of WooCommerce GoCardless Extension','<strong>Your shop requires a security update to address a vulnerability in the WooCommerce GoCardless extension</strong>. The fix for this vulnerability was released on July 4th. Please update immediately.','{}','pending','woocommerce.com','2023-07-05 14:12:02',NULL,0,'plain','',0,0,'info'),(106,'woocommerce-shipping-fedex-api-outage-2023-07-16','warning','en_US','Scheduled FedEx API outage — July 2023','On July 16 there will be a full outage of the FedEx API from 04:00 to 08:00 AM UTC. Due to planned maintenance by FedEx, you\'ll be unable to provide FedEx shipping rates during this time. Follow the link below for more information and recommendations on how to minimize impact.','{}','pending','woocommerce.com','2023-07-06 14:12:07',NULL,0,'plain','',0,0,'info'),(107,'wcship-2023-07-hazmat-update-needed','update','en_US','Action required: USPS HAZMAT compliance update for WooCommerce Shipping & Tax extension','<strong>Your store requires an update for the WooCommerce Shipping extension</strong>. Please update to the latest version of the WooCommerce Shipping & Tax extension immediately to ensure compliance with new USPS HAZMAT rules currently in effect.','{}','pending','woocommerce.com','2023-07-12 14:13:38',NULL,0,'plain','',0,0,'info'),(108,'square_payments_q3_2023','marketing','en_US','Square for WooCommerce','Connect your Square account with WooCommerce to accept online and in-person payments (including contactless payments and cross-channel gift cards) quickly and securely. Save time by syncing sales, customers, and items and inventory — and manage everything through one centralized platform.','{}','unactioned','woocommerce.com','2023-07-19 14:40:26',NULL,0,'plain','',0,0,'info'),(109,'wc-admin-woopayments-rebrand','marketing','en_US','WooCommerce Payments is now WooPayments','We’ve changed the name as part of recent updates to the Woo brand. You’ll still enjoy the same seamless payments experience — just look for WooPayments in your WordPress admin.','{}','pending','woocommerce.com','2023-07-29 14:48:29',NULL,0,'plain','',0,0,'info'),(110,'woocommerce-WCStripe-Aug-2023-update-needed','update','en_US','Action required: Security update for WooCommerce Stripe plugin','<strong>Your shop requires an important security update for the WooCommerce Stripe plugin</strong>. The fix for this vulnerability was released on July 31. Please update immediately.','{}','pending','woocommerce.com','2023-08-03 14:06:38',NULL,0,'plain','',0,0,'info'),(111,'woocommerce-WCStripe-Aug-2023-security-updated','update','en_US','Security update of WooCommerce Stripe plugin','<strong>Your store has been updated to the latest secure version of the WooCommerce Stripe plugin</strong>. This update was released on July 31.','{}','pending','woocommerce.com','2023-08-03 14:06:38',NULL,0,'plain','',0,0,'info'),(112,'woocommerce-WooPayments-Aug-2023-update-needed','update','en_US','Action required: Security update for WooPayments (WooCommerce Payments) plugin','<strong>Your shop requires an important security update for the WooPayments (WooCommerce Payments) extension</strong>. The fix for this vulnerability was released on July 31. Please update immediately.','{}','pending','woocommerce.com','2023-08-03 14:06:38',NULL,0,'plain','',0,0,'info'),(113,'woocommerce-WooPayments-Aug-2023-security-updated','update','en_US','Security update of WooPayments (WooCommerce Payments) plugin','<strong>Your store has been updated to the more secure version of WooPayments (WooCommerce Payments)</strong>. This update was released on July 31.','{}','pending','woocommerce.com','2023-08-03 14:06:38',NULL,0,'plain','',0,0,'info'),(114,'tiktok-apac-webinar-2023','marketing','en_US','Unlocking TikTok: Live Webinar August 9','Join us on August 9 for a free online masterclass with our partners at TikTok, tailored to Woo merchants in the APAC region (11 am AEST). You’ll learn how to connect your store to TikTok, unlock expert advertising tools, and reach its one billion active global users — all from the comfort of your own home.','{}','pending','woocommerce.com','2023-08-05 14:30:43',NULL,0,'plain','',0,0,'info'),(115,'avalara_q3-2023_noAvaTax','marketing','en_US','Automatically calculate VAT in real time','Take the effort out of determining tax rates and sell confidently across borders with automated tax management from Avalara AvaTax— including built-in VAT calculation when you sell into or across the EU and UK. Save time and stay compliant when you let Avalara do the heavy lifting.','{}','pending','woocommerce.com','2023-08-09 14:09:27',NULL,0,'plain','',0,0,'info'),(116,'avalara_q3-2023_withAvaTax','marketing','en_US','New in AvaTax: Calculate VAT in real time','Take the effort out of determining tax rates and sell confidently across borders with automated tax management from Avalara AvaTax— including built-in VAT calculation when you sell into or across the EU and UK. Save time and stay compliant when you let Avalara do the heavy lifting.','{}','pending','woocommerce.com','2023-08-09 14:09:27',NULL,0,'plain','',0,0,'info'),(117,'google_uxstudy_recruitment_q3-2023','marketing','en_US','Share your feedback in exchange for $150','Woo has teamed up with Google to collect feedback on advertising products and services available to you. If selected, you’ll receive an incentive equal to $150 USD for a 60-minute interview that can help improve the products you use to advertise. If interested, please take 2 minutes to complete the screening survey.','{}','pending','woocommerce.com','2023-08-10 14:37:52',NULL,0,'plain','',0,0,'info'),(118,'woo-activation-survey-blockers-22AUG23','info','en_US','How can we help you get that first sale?','Your feedback is vital. Please take a minute to share your experience of setting up your new store and whether anything is preventing you from making those first few sales. Together, we can make Woo even better!','{}','pending','woocommerce.com','2023-08-22 15:55:54',NULL,0,'plain','',0,0,'info'),(119,'wc-admin-performance-on-mobile','info','en_US','Track your store performance on mobile','Monitor your sales and high performing products with the Woo app.','{}','unactioned','woocommerce-admin','2023-09-03 09:13:04',NULL,0,'plain','',0,0,'info'),(120,'tiktok_shopGTM_q3-2023_hasTikTok','marketing','en_US','You can now sell your products on TikTok Shop','TikTok is changing the way shoppers find and connect with brands. With TikTok Shop, you can sync your entire catalog from within Woo and sell directly to TikTok users through in-feed videos, livestreams, and your product showcase tab.','{}','pending','woocommerce.com','2023-09-06 14:25:10',NULL,0,'plain','',0,0,'info'),(121,'tiktok_shopGTM_q3-2023_noTikTok','marketing','en_US','You can now sell your products on TikTok Shop','TikTok is changing the way shoppers find and connect with brands. With TikTok Shop, you can sync your entire catalog from within Woo and sell directly to TikTok users through in-feed videos, livestreams, and your product showcase tab.','{}','pending','woocommerce.com','2023-09-08 16:20:34',NULL,0,'plain','',0,0,'info'),(122,'klaviyo_q3_2023','marketing','en_US','Build long lasting relationships with Klaviyo for WooCommerce','Increase customer engagement and boost conversions with powerful email and SMS automation from Klaviyo. Fully integrated with your Woo store, Klaviyo enables you to send personalized communications to your customers — ensuring that the right message is delivered at the right time for maximum impact.','{}','pending','woocommerce.com','2023-09-12 20:11:33',NULL,0,'plain','',0,0,'info'),(123,'wc_admin_BNPL_WCPay_Q3_2023','marketing','en_US','Afterpay and Affirm have arrived in WooCommerce Payments!','Give your customers more power with buy now, pay later from Afterpay and Affirm — now included as part of WooCommerce Payments! With this new integration, you can quickly offer a checkout option that converts sales and boosts average order value, all from within the same payments dashboard you already know.','{}','pending','woocommerce.com','2023-09-19 14:19:18',NULL,0,'plain','',0,0,'info'),(124,'wc_admin_afterpay_WCPay_Q3_2023','marketing','en_US','Afterpay has arrived in WooCommerce Payments!','Give your customers more power with buy now, pay later from Afterpay — now included as part of WooCommerce Payments! With this new integration, you can quickly offer a checkout option that converts sales and boosts average order value, all from within the same payments dashboard you already know.','{}','pending','woocommerce.com','2023-09-19 14:19:18',NULL,0,'plain','',0,0,'info'),(125,'woocommerce-usermeta-Sept2023-productvendors','update','en_US','Your store requires a security update','<strong>Your shop needs an update to address a vulnerability in WooCommerce.</strong> The fix was released on Sept 15. Please update WooCommerce to the latest version immediately. <a href=\"https://developer.woocommerce.com/2023/09/16/woocommerce-vulnerability-reintroduced-from-7-0-1/\" />Read our developer update</a> for more information.','{}','pending','woocommerce.com','2023-09-20 14:12:45',NULL,0,'plain','',0,0,'info'),(126,'Klarna_10OCT23','marketing','en_US','Klarna is now available','This is a test. Klarna is now available.','{}','pending','woocommerce.com','2023-10-11 15:13:27',NULL,0,'plain','',0,0,'info'),(127,'wc_com_in_person_payments_card_sale_US_inbox_note_q4_23','marketing','en_US','Save 35% on a WooPayments card reader','Have you been thinking about selling your products or services in person? Now’s the perfect time to do so, as we’re discounting our M2 card readers by 35%! Securely process payments wherever your business takes you, with full store and inventory sync. Don’t miss out — this offer ends October 29, 2023.','{}','pending','woocommerce.com','2023-10-13 14:41:02',NULL,0,'plain','',0,0,'info'),(128,'wc_com_in_person_payments_card_sale_UK_inbox_note_q4_23','marketing','en_US','Save 35% on a WooPayments card reader','Have you been thinking about selling your products or services in person? Now’s the perfect time to do so, as we’re discounting our WisePad 3 card readers by 35%! Securely process payments wherever your business takes you, with full store and inventory sync. Don’t miss out — this offer ends 29th October 2023.','{}','pending','woocommerce.com','2023-10-13 14:41:02',NULL,0,'plain','',0,0,'info'),(129,'wc_com_in_person_payments_card_sale_CA_inbox_note_q4_23','marketing','en_US','Save 35% on a WooPayments card reader','Have you been thinking about selling your products or services in person? Now’s the perfect time to do so, as we’re discounting our WisePad 3 card readers by 35%! Securely process payments wherever your business takes you, with full store and inventory sync. Don’t miss out — this offer ends October 29, 2023.','{}','pending','woocommerce.com','2023-10-13 14:41:02',NULL,0,'plain','',0,0,'info'),(130,'woocommerce-STRIPE-Oct-2023-update-needed','update','en_US','Action required: Security update for WooCommerce Stripe Gateway','<strong>Your shop requires a security update to address a vulnerability in the WooCommerce Stripe Gateway</strong>. The fix for this vulnerability was released on October 17. Please update immediately.','{}','pending','woocommerce.com','2023-10-19 10:48:14',NULL,0,'plain','',0,0,'info'),(131,'wc_admin_WooPay_Q4_2023','marketing','en_US','Convert more sales with our fastest checkout yet','Enable WooPay and offer the only single-click checkout experience built by Woo, for Woo. Give shoppers the power to pay instantly and securely speed through checkout, even if it\'s their first visit. Add it for free with one tap in your WooPayments dashboard.','{}','pending','woocommerce.com','2023-10-28 14:04:25',NULL,0,'plain','',0,0,'info'),(132,'wc_admin_WooPay_Oct30_2023','marketing','en_US','Convert more sales with our fastest checkout yet','Enable WooPay and offer the only single-click checkout experience built by Woo, for Woo. Give shoppers the power to pay instantly and securely speed through checkout, even if it\'s their first visit. Add it for free with one tap in your WooPayments dashboard.','{}','pending','woocommerce.com','2023-10-30 16:21:13',NULL,0,'plain','',0,0,'info'),(133,'paypal_paylater_q4_23','marketing','en_US','Boost your sales this holiday season with PayPal','Set yourself up for success this holiday season by allowing customers to pay the way they prefer. With the latest version of PayPal Payments, you can accept PayPal, Venmo (US), Pay Later*, credit and debit cards, and popular alternative payment methods in one secure solution.','{}','pending','woocommerce.com','2023-11-06 14:16:17',NULL,0,'plain','',0,0,'info'),(134,'paystack-test-mode','info','en_US','Paystack test mode enabled','Paystack test mode is currently enabled. Remember to disable it when you want to start accepting live payment on your site.','{}','unactioned','woo-paystack','2023-11-21 14:07:17',NULL,0,'plain','',0,0,'info'),(135,'wc-admin-orders-milestone','info','en_US','First order received','Congratulations on getting your first order! Now is a great time to learn how to manage your orders.','{\"current_milestone\":1}','unactioned','woocommerce-admin','2023-11-22 09:12:11',NULL,0,'plain','',0,0,'info'),(136,'wc-admin-launch-checklist','info','en_US','Ready to launch your store?','To make sure you never get that sinking \"what did I forget\" feeling, we\'ve put together the essential pre-launch checklist.','{}','unactioned','woocommerce-admin','2023-11-22 14:23:58',NULL,0,'plain','',0,0,'info'),(137,'wc-admin-new-sales-record','info','en_US','New sales record!','Woohoo, November 22nd was your record day for sales! Net sales was R225.00 beating the previous record of R150.00 set on November 21st.','{\"old_record_date\":\"2023-11-21\",\"old_record_amt\":150,\"new_record_date\":\"2023-11-22\",\"new_record_amt\":225}','unactioned','woocommerce-admin','2023-11-23 14:14:13',NULL,0,'plain','',0,0,'info'),(138,'wc-admin-edit-products-on-the-move','info','en_US','Edit products on the move','Edit and create new products from your mobile devices with the Woo app','{}','unactioned','woocommerce-admin','2023-12-06 14:21:56',NULL,0,'plain','',0,0,'info'),(139,'tap_to_pay_iphone_q4_2023_no_woopayments','marketing','en_US','Accept in-person contactless payments on your iPhone','Tap to Pay on iPhone and WooPayments is quick, secure, and simple to set up — no extra terminals or card readers are needed. Accept contactless debit and credit cards, Apple Pay, and other NFC digital wallets in person.','{}','pending','woocommerce.com','2023-12-06 14:21:57',NULL,0,'plain','',0,0,'info'),(140,'tap_to_pay_iphone_q4_2023_with_woopayments','marketing','en_US','Accept in-person contactless payments on your iPhone','Tap to Pay on iPhone is quick, secure, and simple to set up in WooPayments — no extra terminals or card readers are needed. Accept contactless debit and credit cards, Apple Pay, and other NFC digital wallets in person in a few short steps!','{}','pending','woocommerce.com','2023-12-06 14:21:57',NULL,0,'plain','',0,0,'info'),(141,'amazon-mcf-reviews-2023-12-07','marketing','en_US','Enjoying Amazon MCF for WooCommerce?','We\'re Never Settle, the developers behind Amazon MCF for WooCommerce, and would be deeply honored to have your review. Reviews help immensely as other users can learn how MCF can solve their needs too! Not happy or need help? Please reach out for support and we’d love to make things right!','{}','pending','woocommerce.com','2023-12-06 14:21:57',NULL,0,'plain','',0,0,'info'),(142,'amazon_pay_reactivate_q1-24','marketing','en_US','Special offer: Activate 0% promo rate for Amazon Pay','For a limited time, Woo merchants who register with Amazon Pay can enjoy a promotional rate of 0% on all transaction fees for 30 days. Valid for businesses based in Germany, France, Italy, Spain, and the United Kingdom. Terms and conditions apply.','{}','pending','woocommerce.com','2024-01-10 14:05:00',NULL,0,'plain','',0,0,'info'); /*!40000 ALTER TABLE `wp_wc_admin_notes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_category_lookup` -- DROP TABLE IF EXISTS `wp_wc_category_lookup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_category_lookup` ( `category_tree_id` bigint(20) unsigned NOT NULL, `category_id` bigint(20) unsigned NOT NULL, PRIMARY KEY (`category_tree_id`,`category_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_category_lookup` -- LOCK TABLES `wp_wc_category_lookup` WRITE; /*!40000 ALTER TABLE `wp_wc_category_lookup` DISABLE KEYS */; INSERT INTO `wp_wc_category_lookup` VALUES (15,15); /*!40000 ALTER TABLE `wp_wc_category_lookup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_customer_lookup` -- DROP TABLE IF EXISTS `wp_wc_customer_lookup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_customer_lookup` ( `customer_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint(20) unsigned DEFAULT NULL, `username` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `first_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `last_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `email` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `date_last_active` timestamp NULL DEFAULT NULL, `date_registered` timestamp NULL DEFAULT NULL, `country` char(2) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `postcode` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `city` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `state` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', PRIMARY KEY (`customer_id`), UNIQUE KEY `user_id` (`user_id`), KEY `email` (`email`) ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_customer_lookup` -- LOCK TABLES `wp_wc_customer_lookup` WRITE; /*!40000 ALTER TABLE `wp_wc_customer_lookup` DISABLE KEYS */; INSERT INTO `wp_wc_customer_lookup` VALUES (5,18,'quty@mailinator.com','Bruce Head Cecilia Houston','','quty@mailinator.com','2023-01-11 19:00:00','2023-01-06 14:39:42','CZ','10093','Aut reprehenderit ei','Ex et reprehenderit '),(6,21,'regeboh@mailinator.com','Veda Hinton','','regeboh@mailinator.com',NULL,'2023-01-23 06:05:44','','Est adipisci volupta','',''),(7,NULL,'','Sybil','Christensen','gesetap@mailinator.com','2023-11-21 09:09:55',NULL,'SY','18946','Impedit porro error','FS'),(8,NULL,'','TEST','TEST','test@gmail.com','2023-11-21 09:24:18',NULL,'ZA','34453','captown','FS'),(9,NULL,'','Shana','Dejesus','tomufynata@mailinator.com','2023-11-22 05:40:15',NULL,'ZA','14209','Quas sint cupiditate','FS'),(10,NULL,'','Fitzgerald','Jenkins','jynu@mailinator.com','2023-11-24 07:45:25',NULL,'GP','21494','Occaecat quam accusa',''); /*!40000 ALTER TABLE `wp_wc_customer_lookup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_download_log` -- DROP TABLE IF EXISTS `wp_wc_download_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_download_log` ( `download_log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `timestamp` datetime NOT NULL, `permission_id` bigint(20) unsigned NOT NULL, `user_id` bigint(20) unsigned DEFAULT NULL, `user_ip_address` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT '', PRIMARY KEY (`download_log_id`), KEY `permission_id` (`permission_id`), KEY `timestamp` (`timestamp`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_download_log` -- LOCK TABLES `wp_wc_download_log` WRITE; /*!40000 ALTER TABLE `wp_wc_download_log` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wc_download_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_order_addresses` -- DROP TABLE IF EXISTS `wp_wc_order_addresses`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_order_addresses` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `order_id` bigint(20) unsigned NOT NULL, `address_type` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `first_name` text COLLATE utf8mb4_unicode_520_ci, `last_name` text COLLATE utf8mb4_unicode_520_ci, `company` text COLLATE utf8mb4_unicode_520_ci, `address_1` text COLLATE utf8mb4_unicode_520_ci, `address_2` text COLLATE utf8mb4_unicode_520_ci, `city` text COLLATE utf8mb4_unicode_520_ci, `state` text COLLATE utf8mb4_unicode_520_ci, `postcode` text COLLATE utf8mb4_unicode_520_ci, `country` text COLLATE utf8mb4_unicode_520_ci, `email` varchar(320) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `phone` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `address_type_order_id` (`address_type`,`order_id`), KEY `order_id` (`order_id`), KEY `email` (`email`(191)), KEY `phone` (`phone`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_order_addresses` -- LOCK TABLES `wp_wc_order_addresses` WRITE; /*!40000 ALTER TABLE `wp_wc_order_addresses` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wc_order_addresses` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_order_coupon_lookup` -- DROP TABLE IF EXISTS `wp_wc_order_coupon_lookup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_order_coupon_lookup` ( `order_id` bigint(20) unsigned NOT NULL, `coupon_id` bigint(20) NOT NULL, `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `discount_amount` double NOT NULL DEFAULT '0', PRIMARY KEY (`order_id`,`coupon_id`), KEY `coupon_id` (`coupon_id`), KEY `date_created` (`date_created`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_order_coupon_lookup` -- LOCK TABLES `wp_wc_order_coupon_lookup` WRITE; /*!40000 ALTER TABLE `wp_wc_order_coupon_lookup` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wc_order_coupon_lookup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_order_operational_data` -- DROP TABLE IF EXISTS `wp_wc_order_operational_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_order_operational_data` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `order_id` bigint(20) unsigned DEFAULT NULL, `created_via` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `woocommerce_version` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `prices_include_tax` tinyint(1) DEFAULT NULL, `coupon_usages_are_counted` tinyint(1) DEFAULT NULL, `download_permission_granted` tinyint(1) DEFAULT NULL, `cart_hash` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `new_order_email_sent` tinyint(1) DEFAULT NULL, `order_key` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `order_stock_reduced` tinyint(1) DEFAULT NULL, `date_paid_gmt` datetime DEFAULT NULL, `date_completed_gmt` datetime DEFAULT NULL, `shipping_tax_amount` decimal(26,8) DEFAULT NULL, `shipping_total_amount` decimal(26,8) DEFAULT NULL, `discount_tax_amount` decimal(26,8) DEFAULT NULL, `discount_total_amount` decimal(26,8) DEFAULT NULL, `recorded_sales` tinyint(1) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `order_id` (`order_id`), KEY `order_key` (`order_key`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_order_operational_data` -- LOCK TABLES `wp_wc_order_operational_data` WRITE; /*!40000 ALTER TABLE `wp_wc_order_operational_data` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wc_order_operational_data` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_order_product_lookup` -- DROP TABLE IF EXISTS `wp_wc_order_product_lookup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_order_product_lookup` ( `order_item_id` bigint(20) unsigned NOT NULL, `order_id` bigint(20) unsigned NOT NULL, `product_id` bigint(20) unsigned NOT NULL, `variation_id` bigint(20) unsigned NOT NULL, `customer_id` bigint(20) unsigned DEFAULT NULL, `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `product_qty` int(11) NOT NULL, `product_net_revenue` double NOT NULL DEFAULT '0', `product_gross_revenue` double NOT NULL DEFAULT '0', `coupon_amount` double NOT NULL DEFAULT '0', `tax_amount` double NOT NULL DEFAULT '0', `shipping_amount` double NOT NULL DEFAULT '0', `shipping_tax_amount` double NOT NULL DEFAULT '0', PRIMARY KEY (`order_item_id`), KEY `order_id` (`order_id`), KEY `product_id` (`product_id`), KEY `customer_id` (`customer_id`), KEY `date_created` (`date_created`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_order_product_lookup` -- LOCK TABLES `wp_wc_order_product_lookup` WRITE; /*!40000 ALTER TABLE `wp_wc_order_product_lookup` DISABLE KEYS */; INSERT INTO `wp_wc_order_product_lookup` VALUES (2,2523,2100,0,7,'2023-11-21 14:09:55',1,75,75,0,0,0,0),(3,2524,2100,0,8,'2023-11-21 14:24:18',1,75,75,0,0,0,0),(5,2525,2100,0,9,'2023-11-22 08:41:11',1,75,75,0,0,0,0),(6,2526,2100,0,9,'2023-11-22 10:40:15',2,150,150,0,0,0,0),(7,2527,2100,0,10,'2023-11-24 12:45:25',1,75,75,0,0,0,0); /*!40000 ALTER TABLE `wp_wc_order_product_lookup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_order_stats` -- DROP TABLE IF EXISTS `wp_wc_order_stats`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_order_stats` ( `order_id` bigint(20) unsigned NOT NULL, `parent_id` bigint(20) unsigned NOT NULL DEFAULT '0', `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `num_items_sold` int(11) NOT NULL DEFAULT '0', `total_sales` double NOT NULL DEFAULT '0', `tax_total` double NOT NULL DEFAULT '0', `shipping_total` double NOT NULL DEFAULT '0', `net_total` double NOT NULL DEFAULT '0', `returning_customer` tinyint(1) DEFAULT NULL, `status` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL, `customer_id` bigint(20) unsigned NOT NULL, `date_paid` datetime DEFAULT '0000-00-00 00:00:00', `date_completed` datetime DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`order_id`), KEY `date_created` (`date_created`), KEY `customer_id` (`customer_id`), KEY `status` (`status`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_order_stats` -- LOCK TABLES `wp_wc_order_stats` WRITE; /*!40000 ALTER TABLE `wp_wc_order_stats` DISABLE KEYS */; INSERT INTO `wp_wc_order_stats` VALUES (2523,0,'2023-11-21 14:09:55','2023-11-21 14:09:55',1,75,0,0,75,0,'wc-cancelled',7,NULL,NULL),(2524,0,'2023-11-21 14:24:18','2023-11-21 14:24:18',1,75,0,0,75,0,'wc-cancelled',8,NULL,NULL),(2525,0,'2023-11-22 08:41:11','2023-11-22 08:41:11',1,75,0,0,75,0,'wc-cancelled',9,NULL,NULL),(2526,0,'2023-11-22 10:40:15','2023-11-22 10:40:15',2,150,0,0,150,0,'wc-cancelled',9,NULL,NULL),(2527,0,'2023-11-24 12:45:25','2023-11-24 12:45:25',1,75,0,0,75,0,'wc-cancelled',10,NULL,NULL); /*!40000 ALTER TABLE `wp_wc_order_stats` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_order_tax_lookup` -- DROP TABLE IF EXISTS `wp_wc_order_tax_lookup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_order_tax_lookup` ( `order_id` bigint(20) unsigned NOT NULL, `tax_rate_id` bigint(20) unsigned NOT NULL, `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `shipping_tax` double NOT NULL DEFAULT '0', `order_tax` double NOT NULL DEFAULT '0', `total_tax` double NOT NULL DEFAULT '0', PRIMARY KEY (`order_id`,`tax_rate_id`), KEY `tax_rate_id` (`tax_rate_id`), KEY `date_created` (`date_created`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_order_tax_lookup` -- LOCK TABLES `wp_wc_order_tax_lookup` WRITE; /*!40000 ALTER TABLE `wp_wc_order_tax_lookup` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wc_order_tax_lookup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_orders` -- DROP TABLE IF EXISTS `wp_wc_orders`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_orders` ( `id` bigint(20) unsigned NOT NULL, `status` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `currency` varchar(10) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `type` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `tax_amount` decimal(26,8) DEFAULT NULL, `total_amount` decimal(26,8) DEFAULT NULL, `customer_id` bigint(20) unsigned DEFAULT NULL, `billing_email` varchar(320) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `date_created_gmt` datetime DEFAULT NULL, `date_updated_gmt` datetime DEFAULT NULL, `parent_order_id` bigint(20) unsigned DEFAULT NULL, `payment_method` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `payment_method_title` text COLLATE utf8mb4_unicode_520_ci, `transaction_id` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `ip_address` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `user_agent` text COLLATE utf8mb4_unicode_520_ci, `customer_note` text COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`id`), KEY `status` (`status`), KEY `date_created` (`date_created_gmt`), KEY `customer_id_billing_email` (`customer_id`,`billing_email`(171)), KEY `billing_email` (`billing_email`(191)), KEY `type_status_date` (`type`,`status`,`date_created_gmt`), KEY `parent_order_id` (`parent_order_id`), KEY `date_updated` (`date_updated_gmt`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_orders` -- LOCK TABLES `wp_wc_orders` WRITE; /*!40000 ALTER TABLE `wp_wc_orders` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wc_orders` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_orders_meta` -- DROP TABLE IF EXISTS `wp_wc_orders_meta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_orders_meta` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `order_id` bigint(20) unsigned DEFAULT NULL, `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` text COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`id`), KEY `meta_key_value` (`meta_key`(100),`meta_value`(82)), KEY `order_id_meta_key_meta_value` (`order_id`,`meta_key`(100),`meta_value`(82)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_orders_meta` -- LOCK TABLES `wp_wc_orders_meta` WRITE; /*!40000 ALTER TABLE `wp_wc_orders_meta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wc_orders_meta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_product_attributes_lookup` -- DROP TABLE IF EXISTS `wp_wc_product_attributes_lookup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_product_attributes_lookup` ( `product_id` bigint(20) NOT NULL, `product_or_parent_id` bigint(20) NOT NULL, `taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL, `term_id` bigint(20) NOT NULL, `is_variation_attribute` tinyint(1) NOT NULL, `in_stock` tinyint(1) NOT NULL, PRIMARY KEY (`product_or_parent_id`,`term_id`,`product_id`,`taxonomy`), KEY `is_variation_attribute_term_id` (`is_variation_attribute`,`term_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_product_attributes_lookup` -- LOCK TABLES `wp_wc_product_attributes_lookup` WRITE; /*!40000 ALTER TABLE `wp_wc_product_attributes_lookup` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wc_product_attributes_lookup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_product_download_directories` -- DROP TABLE IF EXISTS `wp_wc_product_download_directories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_product_download_directories` ( `url_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `url` varchar(256) COLLATE utf8mb4_unicode_520_ci NOT NULL, `enabled` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`url_id`), KEY `url` (`url`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_product_download_directories` -- LOCK TABLES `wp_wc_product_download_directories` WRITE; /*!40000 ALTER TABLE `wp_wc_product_download_directories` DISABLE KEYS */; INSERT INTO `wp_wc_product_download_directories` VALUES (1,'file:///var/www/html/wordpressdemo/wp-content/uploads/woocommerce_uploads/',1),(2,'https://wordpressdemo.subscriptionflow.com/wp-content/uploads/woocommerce_uploads/',1); /*!40000 ALTER TABLE `wp_wc_product_download_directories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_product_meta_lookup` -- DROP TABLE IF EXISTS `wp_wc_product_meta_lookup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_product_meta_lookup` ( `product_id` bigint(20) NOT NULL, `sku` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT '', `virtual` tinyint(1) DEFAULT '0', `downloadable` tinyint(1) DEFAULT '0', `min_price` decimal(19,4) DEFAULT NULL, `max_price` decimal(19,4) DEFAULT NULL, `onsale` tinyint(1) DEFAULT '0', `stock_quantity` double DEFAULT NULL, `stock_status` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT 'instock', `rating_count` bigint(20) DEFAULT '0', `average_rating` decimal(3,2) DEFAULT '0.00', `total_sales` bigint(20) DEFAULT '0', `tax_status` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT 'taxable', `tax_class` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT '', PRIMARY KEY (`product_id`), KEY `virtual` (`virtual`), KEY `downloadable` (`downloadable`), KEY `stock_status` (`stock_status`), KEY `stock_quantity` (`stock_quantity`), KEY `onsale` (`onsale`), KEY `min_max_price` (`min_price`,`max_price`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_product_meta_lookup` -- LOCK TABLES `wp_wc_product_meta_lookup` WRITE; /*!40000 ALTER TABLE `wp_wc_product_meta_lookup` DISABLE KEYS */; INSERT INTO `wp_wc_product_meta_lookup` VALUES (409,'547568769',0,0,10.0000,10.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(2099,'547568769-1',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(2100,'547568769-1-1',0,0,75.0000,75.0000,1,NULL,'instock',0,0.00,0,'taxable',''),(2392,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''); /*!40000 ALTER TABLE `wp_wc_product_meta_lookup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_rate_limits` -- DROP TABLE IF EXISTS `wp_wc_rate_limits`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_rate_limits` ( `rate_limit_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `rate_limit_key` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL, `rate_limit_expiry` bigint(20) unsigned NOT NULL, `rate_limit_remaining` smallint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`rate_limit_id`), UNIQUE KEY `rate_limit_key` (`rate_limit_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_rate_limits` -- LOCK TABLES `wp_wc_rate_limits` WRITE; /*!40000 ALTER TABLE `wp_wc_rate_limits` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wc_rate_limits` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_reserved_stock` -- DROP TABLE IF EXISTS `wp_wc_reserved_stock`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_reserved_stock` ( `order_id` bigint(20) NOT NULL, `product_id` bigint(20) NOT NULL, `stock_quantity` double NOT NULL DEFAULT '0', `timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `expires` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`order_id`,`product_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_reserved_stock` -- LOCK TABLES `wp_wc_reserved_stock` WRITE; /*!40000 ALTER TABLE `wp_wc_reserved_stock` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wc_reserved_stock` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_tax_rate_classes` -- DROP TABLE IF EXISTS `wp_wc_tax_rate_classes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_tax_rate_classes` ( `tax_rate_class_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', PRIMARY KEY (`tax_rate_class_id`), UNIQUE KEY `slug` (`slug`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_tax_rate_classes` -- LOCK TABLES `wp_wc_tax_rate_classes` WRITE; /*!40000 ALTER TABLE `wp_wc_tax_rate_classes` DISABLE KEYS */; INSERT INTO `wp_wc_tax_rate_classes` VALUES (1,'Reduced rate','reduced-rate'),(2,'Zero rate','zero-rate'); /*!40000 ALTER TABLE `wp_wc_tax_rate_classes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_webhooks` -- DROP TABLE IF EXISTS `wp_wc_webhooks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_webhooks` ( `webhook_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `status` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL, `name` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `user_id` bigint(20) unsigned NOT NULL, `delivery_url` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `secret` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `topic` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL, `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `date_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `api_version` smallint(4) NOT NULL, `failure_count` smallint(10) NOT NULL DEFAULT '0', `pending_delivery` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`webhook_id`), KEY `user_id` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_webhooks` -- LOCK TABLES `wp_wc_webhooks` WRITE; /*!40000 ALTER TABLE `wp_wc_webhooks` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wc_webhooks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_api_keys` -- DROP TABLE IF EXISTS `wp_woocommerce_api_keys`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_api_keys` ( `key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint(20) unsigned NOT NULL, `description` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `permissions` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL, `consumer_key` char(64) COLLATE utf8mb4_unicode_520_ci NOT NULL, `consumer_secret` char(43) COLLATE utf8mb4_unicode_520_ci NOT NULL, `nonces` longtext COLLATE utf8mb4_unicode_520_ci, `truncated_key` char(7) COLLATE utf8mb4_unicode_520_ci NOT NULL, `last_access` datetime DEFAULT NULL, PRIMARY KEY (`key_id`), KEY `consumer_key` (`consumer_key`), KEY `consumer_secret` (`consumer_secret`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_api_keys` -- LOCK TABLES `wp_woocommerce_api_keys` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_api_keys` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_woocommerce_api_keys` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_attribute_taxonomies` -- DROP TABLE IF EXISTS `wp_woocommerce_attribute_taxonomies`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_attribute_taxonomies` ( `attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `attribute_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL, `attribute_label` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `attribute_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL, `attribute_orderby` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL, `attribute_public` int(1) NOT NULL DEFAULT '1', PRIMARY KEY (`attribute_id`), KEY `attribute_name` (`attribute_name`(20)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_attribute_taxonomies` -- LOCK TABLES `wp_woocommerce_attribute_taxonomies` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_attribute_taxonomies` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_woocommerce_attribute_taxonomies` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_downloadable_product_permissions` -- DROP TABLE IF EXISTS `wp_woocommerce_downloadable_product_permissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_downloadable_product_permissions` ( `permission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `download_id` varchar(36) COLLATE utf8mb4_unicode_520_ci NOT NULL, `product_id` bigint(20) unsigned NOT NULL, `order_id` bigint(20) unsigned NOT NULL DEFAULT '0', `order_key` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL, `user_email` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL, `user_id` bigint(20) unsigned DEFAULT NULL, `downloads_remaining` varchar(9) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `access_expires` datetime DEFAULT NULL, `download_count` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`permission_id`), KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`(16),`download_id`), KEY `download_order_product` (`download_id`,`order_id`,`product_id`), KEY `order_id` (`order_id`), KEY `user_order_remaining_expires` (`user_id`,`order_id`,`downloads_remaining`,`access_expires`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_downloadable_product_permissions` -- LOCK TABLES `wp_woocommerce_downloadable_product_permissions` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_downloadable_product_permissions` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_woocommerce_downloadable_product_permissions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_log` -- DROP TABLE IF EXISTS `wp_woocommerce_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_log` ( `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `timestamp` datetime NOT NULL, `level` smallint(4) NOT NULL, `source` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL, `message` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `context` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`log_id`), KEY `level` (`level`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_log` -- LOCK TABLES `wp_woocommerce_log` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_log` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_woocommerce_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_order_itemmeta` -- DROP TABLE IF EXISTS `wp_woocommerce_order_itemmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_order_itemmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `order_item_id` bigint(20) unsigned NOT NULL, `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `order_item_id` (`order_item_id`), KEY `meta_key` (`meta_key`(32)) ) ENGINE=InnoDB AUTO_INCREMENT=64 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_order_itemmeta` -- LOCK TABLES `wp_woocommerce_order_itemmeta` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_order_itemmeta` DISABLE KEYS */; INSERT INTO `wp_woocommerce_order_itemmeta` VALUES (10,2,'_product_id','2100'),(11,2,'_variation_id','0'),(12,2,'_qty','1'),(13,2,'_tax_class',''),(14,2,'_line_subtotal','75'),(15,2,'_line_subtotal_tax','0'),(16,2,'_line_total','75'),(17,2,'_line_tax','0'),(18,2,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(19,3,'_product_id','2100'),(20,3,'_variation_id','0'),(21,3,'_qty','1'),(22,3,'_tax_class',''),(23,3,'_line_subtotal','75'),(24,3,'_line_subtotal_tax','0'),(25,3,'_line_total','75'),(26,3,'_line_tax','0'),(27,3,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(37,5,'_product_id','2100'),(38,5,'_variation_id','0'),(39,5,'_qty','1'),(40,5,'_tax_class',''),(41,5,'_line_subtotal','75'),(42,5,'_line_subtotal_tax','0'),(43,5,'_line_total','75'),(44,5,'_line_tax','0'),(45,5,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(46,6,'_product_id','2100'),(47,6,'_variation_id','0'),(48,6,'_qty','2'),(49,6,'_tax_class',''),(50,6,'_line_subtotal','150'),(51,6,'_line_subtotal_tax','0'),(52,6,'_line_total','150'),(53,6,'_line_tax','0'),(54,6,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(55,7,'_product_id','2100'),(56,7,'_variation_id','0'),(57,7,'_qty','1'),(58,7,'_tax_class',''),(59,7,'_line_subtotal','75'),(60,7,'_line_subtotal_tax','0'),(61,7,'_line_total','75'),(62,7,'_line_tax','0'),(63,7,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'); /*!40000 ALTER TABLE `wp_woocommerce_order_itemmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_order_items` -- DROP TABLE IF EXISTS `wp_woocommerce_order_items`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_order_items` ( `order_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `order_item_name` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `order_item_type` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `order_id` bigint(20) unsigned NOT NULL, PRIMARY KEY (`order_item_id`), KEY `order_id` (`order_id`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_order_items` -- LOCK TABLES `wp_woocommerce_order_items` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_order_items` DISABLE KEYS */; INSERT INTO `wp_woocommerce_order_items` VALUES (2,'Test Product 3','line_item',2523),(3,'Test Product 3','line_item',2524),(5,'Test Product 3','line_item',2525),(6,'Test Product 3','line_item',2526),(7,'Test Product 3','line_item',2527); /*!40000 ALTER TABLE `wp_woocommerce_order_items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_payment_tokenmeta` -- DROP TABLE IF EXISTS `wp_woocommerce_payment_tokenmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_payment_tokenmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `payment_token_id` bigint(20) unsigned NOT NULL, `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `payment_token_id` (`payment_token_id`), KEY `meta_key` (`meta_key`(32)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_payment_tokenmeta` -- LOCK TABLES `wp_woocommerce_payment_tokenmeta` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_payment_tokenmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_woocommerce_payment_tokenmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_payment_tokens` -- DROP TABLE IF EXISTS `wp_woocommerce_payment_tokens`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_payment_tokens` ( `token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `gateway_id` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL, `token` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', `type` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL, `is_default` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`token_id`), KEY `user_id` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_payment_tokens` -- LOCK TABLES `wp_woocommerce_payment_tokens` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_payment_tokens` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_woocommerce_payment_tokens` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_sessions` -- DROP TABLE IF EXISTS `wp_woocommerce_sessions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_sessions` ( `session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `session_key` char(32) COLLATE utf8mb4_unicode_520_ci NOT NULL, `session_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `session_expiry` bigint(20) unsigned NOT NULL, PRIMARY KEY (`session_id`), UNIQUE KEY `session_key` (`session_key`) ) ENGINE=InnoDB AUTO_INCREMENT=87 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_sessions` -- LOCK TABLES `wp_woocommerce_sessions` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_sessions` DISABLE KEYS */; INSERT INTO `wp_woocommerce_sessions` VALUES (85,'t_b965305f88edd92b9a4515f9f01530','a:8:{s:4:\"cart\";s:412:\"a:1:{s:32:\"2cad8fa47bbef282badbb8de5374b894\";a:11:{s:3:\"key\";s:32:\"2cad8fa47bbef282badbb8de5374b894\";s:10:\"product_id\";i:2100;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:75;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:75;s:8:\"line_tax\";d:0;}}\";s:11:\"cart_totals\";s:393:\"a:15:{s:8:\"subtotal\";s:2:\"75\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:2:\"75\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:5:\"75.00\";s:9:\"total_tax\";d:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;s:8:\"customer\";s:720:\"a:27:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:2:\"FS\";s:7:\"country\";s:2:\"ZA\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:2:\"FS\";s:16:\"shipping_country\";s:2:\"ZA\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";s:14:\"shipping_phone\";s:0:\"\";}\";}',1705078248),(86,'t_949ce48c0cb7547a2f44881bb44451','a:8:{s:4:\"cart\";s:412:\"a:1:{s:32:\"2cad8fa47bbef282badbb8de5374b894\";a:11:{s:3:\"key\";s:32:\"2cad8fa47bbef282badbb8de5374b894\";s:10:\"product_id\";i:2100;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:75;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:75;s:8:\"line_tax\";d:0;}}\";s:11:\"cart_totals\";s:393:\"a:15:{s:8:\"subtotal\";s:2:\"75\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:2:\"75\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:5:\"75.00\";s:9:\"total_tax\";d:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:10:\"wc_notices\";s:244:\"a:1:{s:7:\"success\";a:1:{i:0;a:2:{s:6:\"notice\";s:169:\"<a href=\"https://wordpressdemo.subscriptionflow.com/cart/\" tabindex=\"1\" class=\"button wc-forward\">View cart</a> “Test Product 3” has been added to your cart.\";s:4:\"data\";a:0:{}}}}\";s:8:\"customer\";s:720:\"a:27:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:2:\"FS\";s:7:\"country\";s:2:\"ZA\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:2:\"FS\";s:16:\"shipping_country\";s:2:\"ZA\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";s:14:\"shipping_phone\";s:0:\"\";}\";}',1705164919); /*!40000 ALTER TABLE `wp_woocommerce_sessions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_shipping_zone_locations` -- DROP TABLE IF EXISTS `wp_woocommerce_shipping_zone_locations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_shipping_zone_locations` ( `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `zone_id` bigint(20) unsigned NOT NULL, `location_code` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL, `location_type` varchar(40) COLLATE utf8mb4_unicode_520_ci NOT NULL, PRIMARY KEY (`location_id`), KEY `location_id` (`location_id`), KEY `location_type_code` (`location_type`(10),`location_code`(20)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_shipping_zone_locations` -- LOCK TABLES `wp_woocommerce_shipping_zone_locations` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_locations` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_locations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_shipping_zone_methods` -- DROP TABLE IF EXISTS `wp_woocommerce_shipping_zone_methods`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_shipping_zone_methods` ( `zone_id` bigint(20) unsigned NOT NULL, `instance_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `method_id` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL, `method_order` bigint(20) unsigned NOT NULL, `is_enabled` tinyint(1) NOT NULL DEFAULT '1', PRIMARY KEY (`instance_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_shipping_zone_methods` -- LOCK TABLES `wp_woocommerce_shipping_zone_methods` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_methods` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_methods` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_shipping_zones` -- DROP TABLE IF EXISTS `wp_woocommerce_shipping_zones`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_shipping_zones` ( `zone_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `zone_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL, `zone_order` bigint(20) unsigned NOT NULL, PRIMARY KEY (`zone_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_shipping_zones` -- LOCK TABLES `wp_woocommerce_shipping_zones` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_shipping_zones` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_woocommerce_shipping_zones` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_tax_rate_locations` -- DROP TABLE IF EXISTS `wp_woocommerce_tax_rate_locations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_tax_rate_locations` ( `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `location_code` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL, `tax_rate_id` bigint(20) unsigned NOT NULL, `location_type` varchar(40) COLLATE utf8mb4_unicode_520_ci NOT NULL, PRIMARY KEY (`location_id`), KEY `tax_rate_id` (`tax_rate_id`), KEY `location_type_code` (`location_type`(10),`location_code`(20)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_tax_rate_locations` -- LOCK TABLES `wp_woocommerce_tax_rate_locations` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_tax_rate_locations` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_woocommerce_tax_rate_locations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_tax_rates` -- DROP TABLE IF EXISTS `wp_woocommerce_tax_rates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_tax_rates` ( `tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `tax_rate_country` varchar(2) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `tax_rate_state` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `tax_rate` varchar(8) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `tax_rate_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `tax_rate_priority` bigint(20) unsigned NOT NULL, `tax_rate_compound` int(1) NOT NULL DEFAULT '0', `tax_rate_shipping` int(1) NOT NULL DEFAULT '1', `tax_rate_order` bigint(20) unsigned NOT NULL, `tax_rate_class` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', PRIMARY KEY (`tax_rate_id`), KEY `tax_rate_country` (`tax_rate_country`), KEY `tax_rate_state` (`tax_rate_state`(2)), KEY `tax_rate_class` (`tax_rate_class`(10)), KEY `tax_rate_priority` (`tax_rate_priority`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_tax_rates` -- LOCK TABLES `wp_woocommerce_tax_rates` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_tax_rates` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_woocommerce_tax_rates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wpfm_backup` -- DROP TABLE IF EXISTS `wp_wpfm_backup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wpfm_backup` ( `id` int(11) NOT NULL AUTO_INCREMENT, `backup_name` text COLLATE utf8mb4_unicode_520_ci, `backup_date` text COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wpfm_backup` -- LOCK TABLES `wp_wpfm_backup` WRITE; /*!40000 ALTER TABLE `wp_wpfm_backup` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wpfm_backup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wpmailsmtp_debug_events` -- DROP TABLE IF EXISTS `wp_wpmailsmtp_debug_events`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wpmailsmtp_debug_events` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `content` text COLLATE utf8mb4_unicode_520_ci, `initiator` text COLLATE utf8mb4_unicode_520_ci, `event_type` tinyint(3) unsigned NOT NULL DEFAULT '0', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=115 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wpmailsmtp_debug_events` -- LOCK TABLES `wp_wpmailsmtp_debug_events` WRITE; /*!40000 ALTER TABLE `wp_wpmailsmtp_debug_events` DISABLE KEYS */; INSERT INTO `wp_wpmailsmtp_debug_events` VALUES (1,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":314}',0,'2022-12-07 07:04:38'),(2,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wc-sf-integration\\/front-end\\/wc-sf-customer-route.php\",\"line\":31}',0,'2022-12-07 07:10:20'),(3,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":314}',0,'2022-12-07 07:19:57'),(4,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2022-12-12 09:13:58'),(5,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2022-12-19 14:05:39'),(6,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-includes\\/user.php\",\"line\":2635}',0,'2022-12-21 02:33:54'),(7,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-includes\\/user.php\",\"line\":2635}',0,'2022-12-21 05:43:29'),(8,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-includes\\/pluggable.php\",\"line\":2159}',0,'2022-12-21 08:28:22'),(9,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-includes\\/pluggable.php\",\"line\":2226}',0,'2022-12-21 08:28:24'),(10,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2022-12-26 21:03:15'),(11,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-01-02 21:12:09'),(12,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-01-09 21:29:34'),(13,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-01-17 01:37:55'),(14,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-includes\\/user.php\",\"line\":2635}',0,'2023-01-23 06:07:31'),(15,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-01-24 13:28:20'),(16,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-01-31 15:40:04'),(17,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-02-07 15:54:41'),(18,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-02-15 00:33:49'),(19,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-02-22 00:34:25'),(20,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-03-01 01:05:41'),(21,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-03-08 01:06:45'),(22,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-03-15 02:01:54'),(23,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-03-22 03:42:53'),(24,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-03-29 04:17:31'),(25,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-admin\\/includes\\/class-wp-automatic-updater.php\",\"line\":911}',0,'2023-03-29 22:25:20'),(26,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-04-05 04:23:08'),(27,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-04-12 04:24:45'),(28,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-04-19 04:37:11'),(29,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-04-26 04:44:17'),(30,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-05-03 06:15:04'),(31,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-05-10 06:52:58'),(32,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-admin\\/includes\\/class-wp-automatic-updater.php\",\"line\":963}',0,'2023-05-17 02:04:49'),(33,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-05-18 01:08:57'),(34,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-admin\\/includes\\/class-wp-automatic-updater.php\",\"line\":963}',0,'2023-05-20 09:18:09'),(35,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-05-25 01:14:02'),(36,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-06-01 01:17:09'),(37,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-06-08 10:35:23'),(38,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-06-15 11:45:24'),(39,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-06-22 11:56:31'),(40,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-06-30 19:58:20'),(41,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-07-07 22:21:27'),(42,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-07-14 23:41:30'),(43,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-07-21 23:42:46'),(44,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-07-28 23:56:55'),(45,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-08-04 23:57:44'),(46,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-admin\\/includes\\/class-wp-automatic-updater.php\",\"line\":963}',0,'2023-08-08 21:53:37'),(47,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-08-12 01:00:54'),(48,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-08-19 01:04:25'),(49,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-08-26 04:00:24'),(50,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-admin\\/includes\\/class-wp-automatic-updater.php\",\"line\":976}',0,'2023-08-29 17:06:21'),(51,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-09-03 04:13:02'),(52,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-09-10 11:58:06'),(53,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-09-17 19:10:03'),(54,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-09-24 20:04:32'),(55,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-10-01 21:13:47'),(56,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-includes\\/pluggable.php\",\"line\":2194}',0,'2023-10-08 06:26:42'),(57,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-10-08 21:32:57'),(58,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-admin\\/includes\\/class-wp-automatic-updater.php\",\"line\":976}',0,'2023-10-12 21:37:53'),(59,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-10-15 21:33:54'),(60,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-10-19 08:58:22'),(61,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-10-22 21:49:19'),(62,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-10-29 22:08:29'),(63,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-11-05 22:11:07'),(64,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-admin\\/includes\\/class-wp-automatic-updater.php\",\"line\":976}',0,'2023-11-08 08:23:22'),(65,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-admin\\/includes\\/class-wp-automatic-updater.php\",\"line\":976}',0,'2023-11-08 20:49:49'),(66,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-11-13 00:40:04'),(67,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-11-20 00:40:24'),(68,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-11-27 00:47:53'),(69,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-11-30 08:31:01'),(70,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-11-30 08:33:12'),(71,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-11-30 08:33:59'),(72,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-includes\\/class-wp-recovery-mode-email-service.php\",\"line\":230}',0,'2023-11-30 08:36:10'),(73,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-11-30 08:36:46'),(74,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-11-30 08:37:09'),(75,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-11-30 08:37:48'),(76,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-11-30 08:38:08'),(77,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-11-30 08:40:58'),(78,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-11-30 08:41:37'),(79,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-11-30 08:45:55'),(80,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-11-30 08:47:06'),(81,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-11-30 08:53:22'),(82,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-11-30 08:53:52'),(83,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-11-30 09:05:42'),(84,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-11-30 09:12:41'),(85,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-11-30 09:13:14'),(86,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-11-30 09:14:23'),(87,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-11-30 09:16:55'),(88,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-11-30 09:18:08'),(89,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-11-30 09:24:17'),(90,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-11-30 09:24:17'),(91,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-11-30 09:27:09'),(92,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-11-30 09:27:24'),(93,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-11-30 09:31:40'),(94,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-11-30 09:32:03'),(95,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-11-30 09:57:10'),(96,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-11-30 09:59:54'),(97,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-12-01 05:03:27'),(98,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-12-01 05:08:51'),(99,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-12-01 05:11:06'),(100,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-12-01 05:13:14'),(101,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-12-01 05:14:24'),(102,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-12-01 05:27:00'),(103,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-12-01 05:27:44'),(104,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-12-01 05:36:00'),(105,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-12-01 05:36:44'),(106,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":277}',0,'2023-12-01 05:38:33'),(107,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-12-04 00:56:28'),(108,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-admin\\/includes\\/class-wp-automatic-updater.php\",\"line\":976}',0,'2023-12-06 20:49:02'),(109,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-12-11 00:58:33'),(110,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-12-18 01:01:02'),(111,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2023-12-25 01:06:46'),(112,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-includes\\/pluggable.php\",\"line\":2041}',0,'2023-12-29 13:28:54'),(113,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2024-01-01 01:14:15'),(114,'Mailer: Default (none)\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/var\\/www\\/html\\/wordpressdemo\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Reports\\/Emails\\/Summary.php\",\"line\":112}',0,'2024-01-08 01:18:36'); /*!40000 ALTER TABLE `wp_wpmailsmtp_debug_events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wpmailsmtp_tasks_meta` -- DROP TABLE IF EXISTS `wp_wpmailsmtp_tasks_meta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wpmailsmtp_tasks_meta` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `action` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `data` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `date` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wpmailsmtp_tasks_meta` -- LOCK TABLES `wp_wpmailsmtp_tasks_meta` WRITE; /*!40000 ALTER TABLE `wp_wpmailsmtp_tasks_meta` DISABLE KEYS */; INSERT INTO `wp_wpmailsmtp_tasks_meta` VALUES (1,'wp_mail_smtp_summary_report_email','W10=','2022-12-07 12:04:34'),(3,'wp_mail_smtp_admin_notifications_update','W10=','2023-10-26 05:08:35'); /*!40000 ALTER TABLE `wp_wpmailsmtp_tasks_meta` 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-01-12 12:30:04